Rakefile in chan_pay-0.3.0 vs Rakefile in chan_pay-0.4.0

- old
+ new

@@ -2,5 +2,15 @@ require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) task :default => :spec + +task :build do + puts `gem build chan_pay.gemspec` +end + +task :push do + puts `gem push chan_pay-#{ChanPay::VERSION}.gem` +end + +task :publish => [:build, :push]