@@ -73,7 +73,7 @@ namespace :gem do
73
73
74
74
desc "Build gems"
75
75
task :build => [ :clean_pkg_directories ] do
76
- run_command "rake build"
76
+ run_command "bin/ rake build"
77
77
end
78
78
79
79
task :clean_pkg_directories do
@@ -82,12 +82,12 @@ namespace :gem do
82
82
83
83
desc "Tag each repo, push the tags, push the gems"
84
84
task :release do
85
- run_command ( " rake release")
85
+ run_command "bin/ rake release"
86
86
end
87
87
88
88
desc "Install all gems locally"
89
89
task :install do
90
- run_command "rake install"
90
+ run_command "bin/ rake install"
91
91
end
92
92
93
93
desc "Uninstall gems locally"
@@ -158,7 +158,7 @@ namespace :git do
158
158
end
159
159
160
160
task :clobber do
161
- run_command "rake clobber"
161
+ run_command "bin/ rake clobber"
162
162
end
163
163
164
164
namespace :bundle do
@@ -179,13 +179,13 @@ end
179
179
task :setup => [ "git:clone" , "bundle:install" ]
180
180
181
181
task :default do
182
- run_command ' rake'
182
+ run_command "bin/ rake"
183
183
end
184
184
185
185
desc "publish cukes to relishapp.com"
186
186
task :relish , :version do |_ , args |
187
187
raise "rake relish[VERSION]" unless args [ :version ]
188
- run_command "rake relish['#{ args [ :version ] } ']" , :except => [ 'rspec' ]
188
+ run_command "bin/ rake relish['#{ args [ :version ] } ']" , :except => [ 'rspec' ]
189
189
end
190
190
191
191
desc "generate release notes from changelogs"
0 commit comments