Parent

Bundler::DepProxy

Attributes

__platform[R]
dep[R]
required_by[R]

Public Class Methods

new(dep, platform) click to toggle source
# File lib/bundler/rubygems_ext.rb, line 159
def initialize(dep, platform)
  @dep, @__platform, @required_by = dep, platform, []
end

Public Instance Methods

==(o) click to toggle source
# File lib/bundler/rubygems_ext.rb, line 167
def ==(o)
  dep == o.dep && __platform == o.__platform
end
Also aliased as: eql?
eql?(o) click to toggle source
Alias for: ==
hash() click to toggle source
# File lib/bundler/rubygems_ext.rb, line 163
def hash
  @hash ||= dep.hash
end
to_s() click to toggle source
# File lib/bundler/rubygems_ext.rb, line 177
def to_s
  @dep.to_s
end
type() click to toggle source
# File lib/bundler/rubygems_ext.rb, line 173
def type
  @dep.type
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.