Rakefile in receipts-0.1.1 vs Rakefile in receipts-0.1.2

- old
+ new

@@ -1,2 +1,12 @@ require "bundler/gem_tasks" +require 'rspec/core/rake_task' +RSpec::Core::RakeTask.new('spec') + +# If you want to make this the default task +task :default => :spec +task :test => :spec + +task :console do + exec "irb -r receipts -I ./lib" +end