Rakefile in on_the_spot-0.0.10 vs Rakefile in on_the_spot-0.0.11
- old
+ new
@@ -19,10 +19,14 @@
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
+
RSpec::Core::RakeTask.new(:spec)
+
+task :default => :spec
+
desc "Run all specs with rcov"
RSpec::Core::RakeTask.new("test_cov") do |t|
t.rcov = true
t.rcov_opts = %w{--rails --include views -Ispec --exclude gems\/,spec\/,features\/,seeds\/}