Class: Rake::Delphi::EnvVariable
- Inherits:
-
Object
- Object
- Rake::Delphi::EnvVariable
- Defined in:
- lib/rake/delphi/envvariables.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name, value) ⇒ EnvVariable
constructor
A new instance of EnvVariable.
Constructor Details
#initialize(name, value) ⇒ EnvVariable
Returns a new instance of EnvVariable.
9 10 11 |
# File 'lib/rake/delphi/envvariables.rb', line 9 def initialize(name, value) @name, @value = name, value end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/rake/delphi/envvariables.rb', line 6 def name @name end |
#value ⇒ Object
Returns the value of attribute value.
7 8 9 |
# File 'lib/rake/delphi/envvariables.rb', line 7 def value @value end |