Module: StartingBlocks
- Defined in:
- lib/starting_blocks.rb,
lib/starting_blocks/cli.rb,
lib/starting_blocks/bash.rb,
lib/starting_blocks/runner.rb,
lib/starting_blocks/version.rb,
lib/starting_blocks/watcher.rb,
lib/starting_blocks/publisher.rb,
lib/starting_blocks/text_parser.rb,
lib/starting_blocks/bash_publisher.rb,
lib/starting_blocks/result_builder.rb,
lib/starting_blocks/minitest_contract.rb,
lib/starting_blocks/pass_through_result_builder.rb
Defined Under Namespace
Modules: Bash, Cli, Publisher, Watcher Classes: BashPublisher, Contract, MinitestContract, PassThroughResultBuilder, ResultBuilder, Runner, TextParser
Constant Summary collapse
- VERSION =
"1.3.1"
Class Attribute Summary collapse
-
.arguments ⇒ Object
Returns the value of attribute arguments.
-
.conditional_operations ⇒ Object
Returns the value of attribute conditional_operations.
-
.options ⇒ Object
Returns the value of attribute options.
-
.verbose ⇒ Object
Returns the value of attribute verbose.
Class Method Summary collapse
Class Attribute Details
.arguments ⇒ Object
Returns the value of attribute arguments.
10 11 12 |
# File 'lib/starting_blocks.rb', line 10 def arguments @arguments end |
.conditional_operations ⇒ Object
Returns the value of attribute conditional_operations.
11 12 13 |
# File 'lib/starting_blocks.rb', line 11 def conditional_operations @conditional_operations end |
.options ⇒ Object
Returns the value of attribute options.
9 10 11 |
# File 'lib/starting_blocks.rb', line 9 def @options end |
.verbose ⇒ Object
Returns the value of attribute verbose.
8 9 10 |
# File 'lib/starting_blocks.rb', line 8 def verbose @verbose end |
Class Method Details
.actions ⇒ Object
21 22 23 |
# File 'lib/starting_blocks.rb', line 21 def actions @actions ||= default_actions end |
.display(message) ⇒ Object
104 105 106 |
# File 'lib/starting_blocks.rb', line 104 def self.display puts if @verbose end |
.operations_to_always_run ⇒ Object
29 30 31 |
# File 'lib/starting_blocks.rb', line 29 def operations_to_always_run @operations_to_always_run ||= default_operations_to_always_run end |