Rakefile in deprecation-0.0.5 vs Rakefile in deprecation-0.1.0
- old
+ new
@@ -9,9 +9,15 @@
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new(:spec)
+
+task :default => :spec
+
task :console do
sh "irb -rubygems -I lib -r deprecation.rb"
end