aboutsummaryrefslogtreecommitdiff
path: root/vendor/supply_drop/Rakefile
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2012-10-23 03:50:52 -0700
committerelijah <elijah@riseup.net>2012-10-23 03:50:52 -0700
commitd385da49ef6c17c64cf8be66002f5744c1ee38f7 (patch)
tree6e19772d6adf2b302e73dbd9229eb3618d19bab0 /vendor/supply_drop/Rakefile
parent3a27d87e6a28e4b58842ca4cb7a1ddc4e6637b36 (diff)
downloadleap_cli-d385da49ef6c17c64cf8be66002f5744c1ee38f7.tar.gz
leap_cli-d385da49ef6c17c64cf8be66002f5744c1ee38f7.tar.bz2
patched supply_drop gem and vendored it
Diffstat (limited to 'vendor/supply_drop/Rakefile')
-rw-r--r--vendor/supply_drop/Rakefile24
1 files changed, 24 insertions, 0 deletions
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