summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-05-20 12:45:13 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-05-20 12:45:13 -0700
commite82da1bcf775ceb3e93e09e3abfb4101e267b5e4 (patch)
tree753f806c0abe58435f14fecbee5bcaa2f6b3eb06
parent644d90fbf31f9b17d2d1b9712a85650c46f421aa (diff)
downloadlibyajl2-gem-e82da1bcf775ceb3e93e09e3abfb4101e267b5e4.tar.gz
remove deps from ship target
i think the gemspec needs to somehow be re-evaluated after doing the clean and prep stages, but that needs to be parsed early to setup the rake extensiontask stuff, so really the files in the gemspec need to not be mutated by clean+prep tasks (but the git trick everyone uses doesn't work here because not all our files we ship are checked into git..).
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 3fba8f6..b3e8b91 100644
--- a/Rakefile
+++ b/Rakefile
@@ -104,7 +104,8 @@ end
# FIXME: need a rake task to update the git submodule and need to do that before shipping
desc "Build it and ship it"
-task :ship => [:clean, :prep, :gem] do
+#task :ship => [:clean, :prep, :gem] do
+task :ship do
sh("git tag #{Libyajl2::VERSION}")
sh("git push --tags")
Dir[File.expand_path("../pkg/*.gem", __FILE__)].reverse.each do |built_gem|