Class: Wool::Rake::WoolTask::Settings
- Inherits:
-
Struct
- Object
- Struct
- Wool::Rake::WoolTask::Settings
- Defined in:
- lib/wool/rake/task.rb
Instance Attribute Summary collapse
-
#extras ⇒ Object
Returns the value of attribute extras.
-
#fix ⇒ Object
Returns the value of attribute fix.
-
#libs ⇒ Object
Returns the value of attribute libs.
-
#options ⇒ Object
Returns the value of attribute options.
-
#using ⇒ Object
Returns the value of attribute using.
Instance Method Summary collapse
-
#initialize(*args) ⇒ Settings
constructor
A new instance of Settings.
Constructor Details
#initialize(*args) ⇒ Settings
Returns a new instance of Settings.
5 6 7 8 9 10 11 12 |
# File 'lib/wool/rake/task.rb', line 5 def initialize(*args) super self.libs ||= [] self.extras ||= [] self. ||= '' self.using ||= [] self.fix ||= [] end |
Instance Attribute Details
#extras ⇒ Object
Returns the value of attribute extras
4 5 6 |
# File 'lib/wool/rake/task.rb', line 4 def extras @extras end |
#fix ⇒ Object
Returns the value of attribute fix
4 5 6 |
# File 'lib/wool/rake/task.rb', line 4 def fix @fix end |
#libs ⇒ Object
Returns the value of attribute libs
4 5 6 |
# File 'lib/wool/rake/task.rb', line 4 def libs @libs end |
#options ⇒ Object
Returns the value of attribute options
4 5 6 |
# File 'lib/wool/rake/task.rb', line 4 def @options end |
#using ⇒ Object
Returns the value of attribute using
4 5 6 |
# File 'lib/wool/rake/task.rb', line 4 def using @using end |