From 0ee887c79251a1012b894a60e627df279d88464f Mon Sep 17 00:00:00 2001 From: Sven Fuchs Date: Thu, 5 Jul 2012 00:47:05 +0200 Subject: [PATCH] add a guardfile for running specs --- Guardfile.phantom | 6 ++++++ lib/guard/assets.rb | 2 +- lib/guard/specs.rb | 35 +++++++++++++++++++++++++++++++++++ public/spec.html | 1 + 4 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 Guardfile.phantom create mode 100644 lib/guard/specs.rb diff --git a/Guardfile.phantom b/Guardfile.phantom new file mode 100644 index 00000000..504f0dc6 --- /dev/null +++ b/Guardfile.phantom @@ -0,0 +1,6 @@ +$: << 'lib' + +guard 'specs' do + watch(%r(^public)) +end + diff --git a/lib/guard/assets.rb b/lib/guard/assets.rb index fde3c56d..74df3679 100644 --- a/lib/guard/assets.rb +++ b/lib/guard/assets.rb @@ -26,7 +26,7 @@ module Guard private def run - system('bundle exec rakep') + system 'bundle exec rakep' end end end diff --git a/lib/guard/specs.rb b/lib/guard/specs.rb new file mode 100644 index 00000000..a2282274 --- /dev/null +++ b/lib/guard/specs.rb @@ -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 + + + diff --git a/public/spec.html b/public/spec.html index d2da8878..a2d673ad 100644 --- a/public/spec.html +++ b/public/spec.html @@ -21,6 +21,7 @@ var console_reporter = new jasmine.ConsoleReporter() jasmine.getEnv().addReporter(new jasmine.TrivialReporter()); + jasmine.getEnv().addReporter(console_reporter); jasmine.getEnv().execute();