Rakefile in
grim-0.2.0
vs Rakefile in
grim-0.2.1
- old
+ new
@@ -1,7 +1,14 @@
require "bundler/gem_tasks"
+
+require "rspec/core/rake_task"
+desc "Run the specs"
+RSpec::Core::RakeTask.new
+
+task :default => :spec
+task :test => :spec