Class: Bundler::IncompleteSpecification
- Inherits:
-
Object
- Object
- Bundler::IncompleteSpecification
- Defined in:
- lib/bundler/incomplete_specification.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#platform ⇒ Object
readonly
Returns the value of attribute platform.
Instance Method Summary collapse
-
#initialize(name, platform) ⇒ IncompleteSpecification
constructor
A new instance of IncompleteSpecification.
Constructor Details
#initialize(name, platform) ⇒ IncompleteSpecification
Returns a new instance of IncompleteSpecification.
7 8 9 10 |
# File 'lib/bundler/incomplete_specification.rb', line 7 def initialize(name, platform) @name = name @platform = platform end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/bundler/incomplete_specification.rb', line 5 def name @name end |
#platform ⇒ Object (readonly)
Returns the value of attribute platform.
5 6 7 |
# File 'lib/bundler/incomplete_specification.rb', line 5 def platform @platform end |