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.
311 312 313 314 315 |
# File 'lib/gnome2/rake/package-task.rb', line 311 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.
310 311 312 |
# File 'lib/gnome2/rake/package-task.rb', line 310 def platform @platform end |
#ruby ⇒ Object
Returns the value of attribute ruby.
310 311 312 |
# File 'lib/gnome2/rake/package-task.rb', line 310 def ruby @ruby end |
Instance Method Details
#apply(spec) ⇒ Object
321 322 323 324 |
# File 'lib/gnome2/rake/package-task.rb', line 321 def apply(spec) spec.platform = @platform @gem_configuration.apply(spec) end |
#gem ⇒ Object
317 318 319 |
# File 'lib/gnome2/rake/package-task.rb', line 317 def gem @gem_configuration end |