deprecate guard-jammit

This commit is contained in:
John Bintz 2011-06-15 17:07:50 -04:00
parent 12d5d19b72
commit 545f149a8c
2 changed files with 8 additions and 2 deletions

View File

@ -15,10 +15,15 @@ home folder's `.jasmine-headless-webkit` file.
## `guard` options ## `guard` options
* `:all_on_start => false` to not run everything when starting, just like `guard-rspec`. * `:all_on_start => false` to not run everything when starting, just like `guard-rspec`.
* `:run_before => "<command to run>` to run a command before running specs. If the command fails, the test run stops. * `:rails_assets => true` to repackage Rails assets before each run.
* `:jammit => true` to run `jammit -f 2>/dev/null` before the tests for the current file change are run. * `:run_before => "<command to run>"` to run a command before running specs. If the command fails, the test run stops.
* `:valid_extensions => %w{js coffee}` to only trigger `run_on_change` events for files with these extensions. Forces Guard to re-run all tests when any other matched file changes. * `:valid_extensions => %w{js coffee}` to only trigger `run_on_change` events for files with these extensions. Forces Guard to re-run all tests when any other matched file changes.
### Deprecated options
* `:jammit => true` to run `jammit -f 2>/dev/null` before the tests for the current file change are run.
* Use [guard-jammit](http://github.com/guard/guard-jammit) instead.
## What's the deal with `newest_js_file`? ## What's the deal with `newest_js_file`?
Since one could, theoretically, have a CoffeeScript app file and a JavaScript spec file (or vice versa), the search for the correct matching Since one could, theoretically, have a CoffeeScript app file and a JavaScript spec file (or vice versa), the search for the correct matching

View File

@ -54,6 +54,7 @@ module Guard
end end
def run_jammit def run_jammit
$stderr.puts "Jammit support is deprecated and will be removed in the future. Use guard-jammit instead." if @options[:jammit]
run_a_thing_before(:jammit, "Jammit", %{jammit -f 2>/dev/null}) run_a_thing_before(:jammit, "Jammit", %{jammit -f 2>/dev/null})
end end