Skip to content

Commit 343daf3

Browse files
author
Andrew Marshall & Sean Moon
committed
Make rails gem build directory consistent with actionpack, etc.
1 parent cb6a082 commit 343daf3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tasks/release.rb

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
version = File.read("#{root}/RAILS_VERSION").strip
55
tag = "v#{version}"
66

7-
directory "dist"
7+
directory "pkg"
88

99
(FRAMEWORKS + ['rails']).each do |framework|
1010
namespace framework do
11-
gem = "dist/#{framework}-#{version}.gem"
11+
gem = "pkg/#{framework}-#{version}.gem"
1212
gemspec = "#{framework}.gemspec"
1313

1414
task :clean do
@@ -41,10 +41,10 @@
4141
File.open(file, 'w') { |f| f.write ruby }
4242
end
4343

44-
task gem => %w(update_version_rb dist) do
44+
task gem => %w(update_version_rb pkg) do
4545
cmd = ""
4646
cmd << "cd #{framework} && " unless framework == "rails"
47-
cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/dist/"
47+
cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
4848
sh cmd
4949
end
5050

@@ -104,14 +104,14 @@
104104
end
105105

106106
task :commit do
107-
File.open('dist/commit_message.txt', 'w') do |f|
107+
File.open('pkg/commit_message.txt', 'w') do |f|
108108
f.puts "# Preparing for #{version} release\n"
109109
f.puts
110110
f.puts "# UNCOMMENT THE LINE ABOVE TO APPROVE THIS COMMIT"
111111
end
112112

113-
sh "git add . && git commit --verbose --template=dist/commit_message.txt"
114-
rm_f "dist/commit_message.txt"
113+
sh "git add . && git commit --verbose --template=pkg/commit_message.txt"
114+
rm_f "pkg/commit_message.txt"
115115
end
116116

117117
task :tag do

0 commit comments

Comments
 (0)