aboutsummaryrefslogtreecommitdiffstats
path: root/pushgems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'pushgems.rb')
-rwxr-xr-xpushgems.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/pushgems.rb b/pushgems.rb
deleted file mode 100755
index 784aa5de68..0000000000
--- a/pushgems.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env ruby
-
-unless ARGV.first == "no_build"
- build_number = Time.now.strftime("%Y%m%d%H%M%S").to_i
-end
-
-%w( activeresource actionmailer actionpack activerecord railties activesupport ).each do |pkg|
- puts "Pushing: #{pkg} (#{build_number})"
- if build_number
- `cd #{pkg} && rm -rf pkg && PKG_BUILD=#{build_number} rake pgem && cd ..`
- else
- `cd #{pkg} && rm -rf pkg && rake pgem && cd ..`
- end
-end \ No newline at end of file