aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/release.rb
diff options
context:
space:
mode:
authorAndrew Marshall & Sean Moon <pair+amarshall+smoon@pivotallabs.com>2011-08-04 17:29:37 -0400
committerAndrew Marshall & Sean Moon <pair+amarshall+smoon@pivotallabs.com>2011-08-04 17:32:43 -0400
commit343daf309b88ac861032faaabe9f209b6c97118d (patch)
treee8b38876cc55344f3bb093204612773b23e4ac58 /tasks/release.rb
parentcb6a082fee1a984ce91476a48c2af57d32960080 (diff)
downloadrails-343daf309b88ac861032faaabe9f209b6c97118d.tar.gz
rails-343daf309b88ac861032faaabe9f209b6c97118d.tar.bz2
rails-343daf309b88ac861032faaabe9f209b6c97118d.zip
Make rails gem build directory consistent with actionpack, etc.
Diffstat (limited to 'tasks/release.rb')
-rw-r--r--tasks/release.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index 01950b227d..2422efa786 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -4,11 +4,11 @@ root = File.expand_path('../../', __FILE__)
version = File.read("#{root}/RAILS_VERSION").strip
tag = "v#{version}"
-directory "dist"
+directory "pkg"
(FRAMEWORKS + ['rails']).each do |framework|
namespace framework do
- gem = "dist/#{framework}-#{version}.gem"
+ gem = "pkg/#{framework}-#{version}.gem"
gemspec = "#{framework}.gemspec"
task :clean do
@@ -41,10 +41,10 @@ directory "dist"
File.open(file, 'w') { |f| f.write ruby }
end
- task gem => %w(update_version_rb dist) do
+ task gem => %w(update_version_rb pkg) do
cmd = ""
cmd << "cd #{framework} && " unless framework == "rails"
- cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/dist/"
+ cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
sh cmd
end
@@ -104,14 +104,14 @@ namespace :all do
end
task :commit do
- File.open('dist/commit_message.txt', 'w') do |f|
+ File.open('pkg/commit_message.txt', 'w') do |f|
f.puts "# Preparing for #{version} release\n"
f.puts
f.puts "# UNCOMMENT THE LINE ABOVE TO APPROVE THIS COMMIT"
end
- sh "git add . && git commit --verbose --template=dist/commit_message.txt"
- rm_f "dist/commit_message.txt"
+ sh "git add . && git commit --verbose --template=pkg/commit_message.txt"
+ rm_f "pkg/commit_message.txt"
end
task :tag do