Class: Bundler::IncompleteSpecification

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/incomplete_specification.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/bundler/incomplete_specification.rb', line 5

def name
  @name
end

#platformObject (readonly)

Returns the value of attribute platform.



5
6
7
# File 'lib/bundler/incomplete_specification.rb', line 5

def platform
  @platform
end