aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionservice/Rakefile2
-rwxr-xr-xpushgems.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/actionservice/Rakefile b/actionservice/Rakefile
index d3e3a3de53..f4ed2bdb31 100644
--- a/actionservice/Rakefile
+++ b/actionservice/Rakefile
@@ -10,6 +10,8 @@ require 'fileutils'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionservice'
PKG_VERSION = '0.4.0' + PKG_BUILD
+PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
+PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
desc "Default Task"
task :default => [ :test ]
diff --git a/pushgems.rb b/pushgems.rb
index 345b9ed649..d87267e4c5 100755
--- a/pushgems.rb
+++ b/pushgems.rb
@@ -2,7 +2,7 @@
build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i
-(%w( actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg|
+(%w( actionservice actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg|
puts "Pushing: #{pkg} (#{build_number})"
`cd #{pkg} && PKG_BUILD=#{build_number} rake pgem && cd ..`
end