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

Class Method Summary collapse

Class Attribute Details

.argumentsObject

Returns the value of attribute arguments.



10
11
12
# File 'lib/starting_blocks.rb', line 10

def arguments
  @arguments
end

.conditional_operationsObject

Returns the value of attribute conditional_operations.



11
12
13
# File 'lib/starting_blocks.rb', line 11

def conditional_operations
  @conditional_operations
end

.optionsObject

Returns the value of attribute options.



9
10
11
# File 'lib/starting_blocks.rb', line 9

def options
  @options
end

.verboseObject

Returns the value of attribute verbose.



8
9
10
# File 'lib/starting_blocks.rb', line 8

def verbose
  @verbose
end

Class Method Details

.actionsObject



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 message
  puts message if @verbose
end

.operations_to_always_runObject



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