class Avromatic::Model::Configurable::FieldReference
Wraps a reference to a field so we can access both the string and symbolized versions of the name without repeated memory allocations.
Attributes
Public Class Methods
Source
# File lib/avromatic/model/configurable.rb, line 16 def initialize(name) @name = -name @name_sym = name.to_sym end