Class: Ree::ImportDsl::RemovedConstant

Inherits:
Object
  • Object
show all
Defined in:
lib/ree/dsl/import_dsl.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, const) ⇒ RemovedConstant

Returns a new instance of RemovedConstant.



48
49
50
51
# File 'lib/ree/dsl/import_dsl.rb', line 48

def initialize(name, const)
  @name = name
  @const = const
end

Instance Attribute Details

#constObject (readonly)

Returns the value of attribute const.



46
47
48
# File 'lib/ree/dsl/import_dsl.rb', line 46

def const
  @const
end

#nameObject (readonly)

Returns the value of attribute name.



46
47
48
# File 'lib/ree/dsl/import_dsl.rb', line 46

def name
  @name
end