Changeset 662
- Timestamp:
- 02/18/05 16:52:40 (4 years ago)
- Files:
-
- trunk/actionservice/Rakefile (modified) (1 diff)
- trunk/pushgems.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionservice/Rakefile
r660 r662 11 11 PKG_NAME = 'actionservice' 12 12 PKG_VERSION = '0.4.0' + PKG_BUILD 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 13 15 14 16 desc "Default Task" trunk/pushgems.rb
r624 r662 3 3 build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i 4 4 5 (%w( action mailer actionpack activerecord railties activesupport) - ARGV).each do |pkg|5 (%w( actionservice actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg| 6 6 puts "Pushing: #{pkg} (#{build_number})" 7 7 `cd #{pkg} && PKG_BUILD=#{build_number} rake pgem && cd ..`