mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
No EOL
432 B
Ruby
11 lines
No EOL
432 B
Ruby
version = ARGV.pop
|
|
|
|
%w( activesupport activemodel activerecord activeresource actionpack actionmailer railties ).each do |framework|
|
|
puts "Building and pushing #{framework}..."
|
|
`cd #{framework} && gem build #{framework}.gemspec && gem push #{framework}-#{version}.gem && rm #{framework}-#{version}.gem`
|
|
end
|
|
|
|
puts "Building and pushing Rails..."
|
|
`gem build rails.gemspec`
|
|
`gem push rails-#{version}.gem`
|
|
`rm rails-#{version}.gem` |