add a guardfile for running specs
This commit is contained in:
parent
adc0ca8cb7
commit
0ee887c792
6
Guardfile.phantom
Normal file
6
Guardfile.phantom
Normal file
|
@ -0,0 +1,6 @@
|
|||
$: << 'lib'
|
||||
|
||||
guard 'specs' do
|
||||
watch(%r(^public))
|
||||
end
|
||||
|
|
@ -26,7 +26,7 @@ module Guard
|
|||
private
|
||||
|
||||
def run
|
||||
system('bundle exec rakep')
|
||||
system 'bundle exec rakep'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
35
lib/guard/specs.rb
Normal file
35
lib/guard/specs.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
$stdout.sync = true
|
||||
|
||||
require 'guard'
|
||||
require 'guard/guard'
|
||||
|
||||
module Guard
|
||||
class Specs < Guard
|
||||
def start
|
||||
UI.info "Guard::Specs is running."
|
||||
run
|
||||
end
|
||||
|
||||
def run_all
|
||||
run
|
||||
end
|
||||
|
||||
def reload
|
||||
run
|
||||
end
|
||||
|
||||
def run_on_change(paths)
|
||||
puts "change: #{paths.inspect}"
|
||||
run
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def run
|
||||
system './run_jasmine.coffee public/spec.html'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
var console_reporter = new jasmine.ConsoleReporter()
|
||||
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
|
||||
jasmine.getEnv().addReporter(console_reporter);
|
||||
jasmine.getEnv().execute();
|
||||
</script>
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue
Block a user