File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 4
4
version = File . read ( "#{ root } /RAILS_VERSION" ) . strip
5
5
tag = "v#{ version } "
6
6
7
- directory "dist "
7
+ directory "pkg "
8
8
9
9
( FRAMEWORKS + [ 'rails' ] ) . each do |framework |
10
10
namespace framework do
11
- gem = "dist /#{ framework } -#{ version } .gem"
11
+ gem = "pkg /#{ framework } -#{ version } .gem"
12
12
gemspec = "#{ framework } .gemspec"
13
13
14
14
task :clean do
41
41
File . open ( file , 'w' ) { |f | f . write ruby }
42
42
end
43
43
44
- task gem => %w( update_version_rb dist ) do
44
+ task gem => %w( update_version_rb pkg ) do
45
45
cmd = ""
46
46
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 /"
48
48
sh cmd
49
49
end
50
50
104
104
end
105
105
106
106
task :commit do
107
- File . open ( 'dist /commit_message.txt' , 'w' ) do |f |
107
+ File . open ( 'pkg /commit_message.txt' , 'w' ) do |f |
108
108
f . puts "# Preparing for #{ version } release\n "
109
109
f . puts
110
110
f . puts "# UNCOMMENT THE LINE ABOVE TO APPROVE THIS COMMIT"
111
111
end
112
112
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"
115
115
end
116
116
117
117
task :tag do
You can’t perform that action at this time.
0 commit comments