Rakefile in vimgolf-0.3.0 vs Rakefile in vimgolf-0.4.0
- old
+ new
@@ -1,2 +1,10 @@
require 'bundler'
Bundler::GemHelper.install_tasks
+
+require 'rspec/core/rake_task'
+
+desc "Run all RSpec tests"
+RSpec::Core::RakeTask.new(:spec)
+
+task :default => :spec
+task :test => [:spec]
\ No newline at end of file