From d385da49ef6c17c64cf8be66002f5744c1ee38f7 Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 23 Oct 2012 03:50:52 -0700 Subject: patched supply_drop gem and vendored it --- vendor/supply_drop/Rakefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 vendor/supply_drop/Rakefile (limited to 'vendor/supply_drop/Rakefile') diff --git a/vendor/supply_drop/Rakefile b/vendor/supply_drop/Rakefile new file mode 100644 index 0000000..666b6a4 --- /dev/null +++ b/vendor/supply_drop/Rakefile @@ -0,0 +1,24 @@ +require 'rake/testtask' + +Rake::TestTask.new do |t| + t.test_files = FileList['test/*_test.rb'] +end + +task :default => :test + +desc "clean" +task :clean do + rm_f Dir.glob("*.gem") +end + +namespace :gem do + desc "build the gem" + task :build => :clean do + sh "gem build supply_drop.gemspec" + end + + desc "push the gem" + task :push => :build do + sh "gem push #{Dir.glob("*.gem").first}" + end +end -- cgit v1.2.3