Rakefile in balanced-0.3.3 vs Rakefile in balanced-0.3.4
- old
+ new
@@ -1,10 +1,12 @@
#!/usr/bin/env rake
require "rake"
require "rspec/core/rake_task"
require "bundler/gem_tasks"
-RSpec::Core::RakeTask.new
+desc "Run spec suite"
+RSpec::Core::RakeTask.new(:spec) { |t| }
+desc "Default the task to run the spec"
task :default => [:spec]