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.



63
64
65
66
# File 'lib/ree/dsl/import_dsl.rb', line 63

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

Instance Attribute Details

#constObject (readonly)

Returns the value of attribute const.



61
62
63
# File 'lib/ree/dsl/import_dsl.rb', line 61

def const
  @const
end

#nameObject (readonly)

Returns the value of attribute name.



61
62
63
# File 'lib/ree/dsl/import_dsl.rb', line 61

def name
  @name
end