Rakefile in eucalypt-0.1.0 vs Rakefile in eucalypt-0.1.1
- old
+ new
@@ -1,2 +1,6 @@
require "bundler/gem_tasks"
-task :default => :spec
+require 'rspec/core/rake_task'
+task :default => [:spec]
+
+desc "Run the specs"
+RSpec::Core::RakeTask.new(:spec)
\ No newline at end of file