diff options
| -rw-r--r-- | rakefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rakefile b/rakefile new file mode 100644 index 0000000..f743858 --- /dev/null +++ b/rakefile @@ -0,0 +1,10 @@ + +task :default => [:unit, :integration] + +task :unit do + sh "ruby spec/unit/all.rb" +end + +task :integration do + sh "bacon spec/integration/all.rb" +end |
