add a guardfile for running specs

This commit is contained in:
Sven Fuchs 2012-07-05 00:47:05 +02:00
parent adc0ca8cb7
commit 0ee887c792
4 changed files with 43 additions and 1 deletions

6
Guardfile.phantom Normal file
View File

@ -0,0 +1,6 @@
$: << 'lib'
guard 'specs' do
watch(%r(^public))
end

View File

@ -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
View 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

View File

@ -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>