This commit is contained in:
John Bintz 2011-08-03 18:53:10 -04:00
parent 3f7d19cba2
commit 69e883a67a
2 changed files with 23 additions and 24 deletions

View File

@ -0,0 +1 @@
require 'guard/rspec-hydra'

View File

@ -2,8 +2,7 @@ require 'guard'
require 'guard/guard'
require 'guard/rspec'
module Guard
class RSpecHydra < Guard::RSpec
class Guard::RSpecHydra < Guard::RSpec
def initialize(watchers = [], options = {})
super
@ -16,7 +15,7 @@ module Guard
end
def start
UI.info "Guard::Hydra is giving Guard::RSpec super run_all powers. Whoa!"
Guard::UI.info "Guard::Hydra is giving Guard::RSpec super run_all powers. Whoa!"
super
end
@ -32,5 +31,4 @@ module Guard
def runner_log?
File.exist?(@options[:runner_log])
end
end
end