Class: Gem::Dependency
- Inherits:
-
Object
- Object
- Gem::Dependency
- Defined in:
- lib/bundler/rubygems_ext.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#all_sources ⇒ Object
Returns the value of attribute all_sources.
-
#groups ⇒ Object
Returns the value of attribute groups.
-
#source ⇒ Object
Returns the value of attribute source.
Instance Method Summary collapse
Instance Attribute Details
#all_sources ⇒ Object
Returns the value of attribute all_sources.
109 110 111 |
# File 'lib/bundler/rubygems_ext.rb', line 109 def all_sources @all_sources end |
#groups ⇒ Object
Returns the value of attribute groups.
109 110 111 |
# File 'lib/bundler/rubygems_ext.rb', line 109 def groups @groups end |
#source ⇒ Object
Returns the value of attribute source.
109 110 111 |
# File 'lib/bundler/rubygems_ext.rb', line 109 def source @source end |
Instance Method Details
#encode_with(coder) ⇒ Object
113 114 115 116 117 |
# File 'lib/bundler/rubygems_ext.rb', line 113 def encode_with(coder) to_yaml_properties.each do |ivar| coder[ivar.to_s.sub(/^@/, "")] = instance_variable_get(ivar) end end |
#to_lock ⇒ Object
123 124 125 126 127 128 129 130 |
# File 'lib/bundler/rubygems_ext.rb', line 123 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_properties ⇒ Object
119 120 121 |
# File 'lib/bundler/rubygems_ext.rb', line 119 def to_yaml_properties instance_variables.reject {|p| ["@source", "@groups", "@all_sources"].include?(p.to_s) } end |