Method: AllGreen::Runner#initialize

Defined in:
lib/all_green/runner.rb

#initialize(options = {}) ⇒ Runner

Returns a new instance of Runner.



5
6
7
8
9
10
11
12
# File 'lib/all_green/runner.rb', line 5

def initialize(options = {})
	@options = options
	@options[:order] ||= [:rspec, :rails_tests, :cucumber, :spinach]

	@engines = []
	load_engines
	sort_engines
end