Remove some useless comments from the release task

This commit is contained in:
Carl Lerche 2010-11-16 15:45:31 -08:00
parent 4ff8c59fb7
commit 6b3f521b80
1 changed files with 0 additions and 14 deletions

View File

@ -69,17 +69,3 @@ namespace :all do
task :install => FRAMEWORKS.map { |f| "#{f}:install" } + ['rails:install']
task :push => FRAMEWORKS.map { |f| "#{f}:push" } + ['rails:push']
end
__END__
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`