Rakefile in onstomp-1.0.0pre1 vs Rakefile in onstomp-1.0.0
- old
+ new
@@ -2,5 +2,13 @@
Bundler::GemHelper.install_tasks
require 'yard'
require File.expand_path("../yard_extensions", __FILE__)
YARD::Rake::YardocTask.new
+
+require 'rspec/core/rake_task'
+desc "Run specs"
+RSpec::Core::RakeTask.new do |t|
+ t.verbose = false
+end
+
+task :default => :spec