From 885832e92057a908f274aeb95c4117053f1fbaad Mon Sep 17 00:00:00 2001 From: "Davis W. Frank" Date: Sun, 1 Apr 2012 11:36:29 -0700 Subject: [PATCH] Forgot to update Contribute to include new Thor tasks --- Contribute.markdown | 12 ++++++------ src/version.json | 5 +++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Contribute.markdown b/Contribute.markdown index 4d2bcb06..5b71b92e 100644 --- a/Contribute.markdown +++ b/Contribute.markdown @@ -34,12 +34,12 @@ As in all good projects, the `spec/` directory mirrors `src/` and follows the sa You will notice that all specs are run against the built `jasmine.js` instead of the component source files. This is intentional as a way to ensure that the concatenation code is working correctly. -Please ensure all specs are green before committing. +Please ensure all specs are green before committing or issuing a pull request. -There are rake tasks to help with getting green: +There are Thor tasks to help with getting green - run `thor list` to see them all. Here are the key tasks: -* `rake spec` outputs the expected number of specs that should be run and attempts to run in browser and Node -* `rake spec:browser` opens `spec/runner.html` in the default browser on MacOS. Please run this in at least Firefox and Chrome before committing -* `rake spec:node` runs all the Jasmine specs in Node.js - it will complain if Node is not installed -* `rake hint` runs all the files through JSHint and will complain about potential viable issues with your code. Fix them. +* `thor jasmine_dev:execute_specs` outputs the expected number of specs that should be run and attempts to run in browser and Node +* `thor jasmine_dev:execute_specs_in_browser` opens `spec/runner.html` in the default browser on MacOS. Please run this in at least Firefox and Chrome before committing +* `thor jasmine_dev:execute_specs_in_node` runs all the Jasmine specs in Node.js - it will complain if Node is not installed +* `thor jasmine_dev:js_hint` runs all the files through JSHint and will complain about potential viable issues with your code. Fix them. diff --git a/src/version.json b/src/version.json index a7c2dbdd..b53f9e9d 100644 --- a/src/version.json +++ b/src/version.json @@ -1,5 +1,6 @@ { "major": 1, - "minor": 1, - "build": 0 + "minor": 2, + "build": 0, + "release_candidate": 1 }