19
20
21
22
23
24
25
26
27
|
# File 'lib/blindfold/launcher.rb', line 19
def run(arguments)
start_redis if Blindfold.boot_redis
init_rails if Blindfold.rails_root
init_helpers
init_blueprints
init_matchers
run_spec(arguments)
stop_redis if Blindfold.boot_redis
end
|