Class: Immutabler::DSL::Prop

Inherits:
Object
  • Object
show all
Defined in:
lib/immutabler/dsl/prop.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, type, options) ⇒ Prop

Returns a new instance of Prop.



6
7
8
9
10
# File 'lib/immutabler/dsl/prop.rb', line 6

def initialize(name, type, options)
  @name = name
  @type = type
  @options = options
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/immutabler/dsl/prop.rb', line 4

def name
  @name
end

#optionsObject

Returns the value of attribute options.



4
5
6
# File 'lib/immutabler/dsl/prop.rb', line 4

def options
  @options
end

#typeObject

Returns the value of attribute type.



4
5
6
# File 'lib/immutabler/dsl/prop.rb', line 4

def type
  @type
end