Class: GNOME2::Rake::PackageTask::DependencyConfiguration
- Inherits:
-
Object
- Object
- GNOME2::Rake::PackageTask::DependencyConfiguration
- Defined in:
- lib/gnome2/rake/package-task.rb
Defined Under Namespace
Classes: GemConfiguration
Instance Attribute Summary collapse
-
#platform ⇒ Object
Returns the value of attribute platform.
-
#ruby ⇒ Object
Returns the value of attribute ruby.
Instance Method Summary collapse
- #apply(spec) ⇒ Object
- #gem ⇒ Object
-
#initialize(package) ⇒ DependencyConfiguration
constructor
A new instance of DependencyConfiguration.
Constructor Details
#initialize(package) ⇒ DependencyConfiguration
Returns a new instance of DependencyConfiguration.
206 207 208 209 210 |
# File 'lib/gnome2/rake/package-task.rb', line 206 def initialize(package) @package = package @platform = Gem::Platform::RUBY @gem_configuration = GemConfiguration.new(@package) end |
Instance Attribute Details
#platform ⇒ Object
Returns the value of attribute platform.
205 206 207 |
# File 'lib/gnome2/rake/package-task.rb', line 205 def platform @platform end |
#ruby ⇒ Object
Returns the value of attribute ruby.
205 206 207 |
# File 'lib/gnome2/rake/package-task.rb', line 205 def ruby @ruby end |
Instance Method Details
#apply(spec) ⇒ Object
216 217 218 219 |
# File 'lib/gnome2/rake/package-task.rb', line 216 def apply(spec) spec.platform = @platform @gem_configuration.apply(spec) end |
#gem ⇒ Object
212 213 214 |
# File 'lib/gnome2/rake/package-task.rb', line 212 def gem @gem_configuration end |