Class: Bora::Tasks
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- Bora::Tasks
- Defined in:
- lib/bora/tasks.rb
Instance Attribute Summary collapse
-
#colorize ⇒ Object
Returns the value of attribute colorize.
-
#stack_options ⇒ Object
Returns the value of attribute stack_options.
Instance Method Summary collapse
-
#initialize(stack_name) {|_self| ... } ⇒ Tasks
constructor
A new instance of Tasks.
Constructor Details
#initialize(stack_name) {|_self| ... } ⇒ Tasks
Returns a new instance of Tasks.
6 7 8 9 10 11 12 |
# File 'lib/bora/tasks.rb', line 6 def initialize(stack_name) @stack_name = stack_name @stack = Stack.new(stack_name) @colorize = true yield self if block_given? define_tasks end |
Instance Attribute Details
#colorize ⇒ Object
Returns the value of attribute colorize.
14 15 16 |
# File 'lib/bora/tasks.rb', line 14 def colorize @colorize end |
#stack_options ⇒ Object
Returns the value of attribute stack_options.
14 15 16 |
# File 'lib/bora/tasks.rb', line 14 def end |