Rakefile in soloist-0.9.3 vs Rakefile in soloist-0.9.4
- old
+ new
@@ -1,2 +1,10 @@
require 'bundler'
Bundler::GemHelper.install_tasks
+
+task :default => [:spec]
+task :test => [:spec]
+
+desc "Run the test suite"
+task :spec do
+ exec "rspec spec/"
+end