Class: Ethel::Field

Inherits:
Object
  • Object
show all
Defined in:
lib/ethel/field.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options) ⇒ Field

Returns a new instance of Field.



5
6
7
8
# File 'lib/ethel/field.rb', line 5

def initialize(name, options)
  @name = name
  @type = options[:type]
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/ethel/field.rb', line 3

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



3
4
5
# File 'lib/ethel/field.rb', line 3

def type
  @type
end