Class: Gem::Dependency

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

Direct Known Subclasses

Bundler::Dependency

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#groupsObject

Returns the value of attribute groups.



156
157
158
# File 'lib/bundler/rubygems_ext.rb', line 156

def groups
  @groups
end

#sourceObject

Returns the value of attribute source.



156
157
158
# File 'lib/bundler/rubygems_ext.rb', line 156

def source
  @source
end

Instance Method Details

#encode_with(coder) ⇒ Object



164
165
166
167
168
# File 'lib/bundler/rubygems_ext.rb', line 164

def encode_with(coder)
  to_yaml_properties.each do |ivar|
    coder[ivar.to_s.sub(/^@/, "")] = instance_variable_get(ivar)
  end
end

#force_ruby_platformObject



160
161
162
# File 'lib/bundler/rubygems_ext.rb', line 160

def force_ruby_platform
  false
end

#to_lockObject



174
175
176
177
178
179
180
181
# File 'lib/bundler/rubygems_ext.rb', line 174

def to_lock
  out = String.new("  #{name}")
  unless requirement.none?
    reqs = requirement.requirements.map {|o, v| "#{o} #{v}" }.sort.reverse
    out << " (#{reqs.join(", ")})"
  end
  out
end

#to_yaml_propertiesObject



170
171
172
# File 'lib/bundler/rubygems_ext.rb', line 170

def to_yaml_properties
  instance_variables.reject {|p| ["@source", "@groups"].include?(p.to_s) }
end