diff options
author | Carl Lerche <me@carllerche.com> | 2010-11-16 15:45:31 -0800 |
---|---|---|
committer | Carl Lerche <me@carllerche.com> | 2010-11-16 17:19:47 -0800 |
commit | 6b3f521b806614a073e4418307b56241fe287940 (patch) | |
tree | 92192367bd1b440e7e242217bc4083c8e7eaaa32 /tasks | |
parent | 4ff8c59fb71de4d8d1c5066c73b110bce29e7aa5 (diff) | |
download | rails-6b3f521b806614a073e4418307b56241fe287940.tar.gz rails-6b3f521b806614a073e4418307b56241fe287940.tar.bz2 rails-6b3f521b806614a073e4418307b56241fe287940.zip |
Remove some useless comments from the release task
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/release.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tasks/release.rb b/tasks/release.rb index a136ff4b6e..4c038f51f5 100644 --- a/tasks/release.rb +++ b/tasks/release.rb @@ -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` - |