Skip to content

Commit a4696ef

Browse files
committed
Changed, that the main Gemfile.lock is not removed in the bundle:clean Rake task
1 parent f6c1fdb commit a4696ef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Rakefile

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'pathname'
22

3-
subprojects = %w| elasticsearch-model elasticsearch-rails elasticsearch-persistence |
3+
subprojects = %w| elasticsearch-rails elasticsearch-persistence elasticsearch-model |
44

55
__current__ = Pathname( File.expand_path('..', __FILE__) )
66

@@ -23,9 +23,6 @@ task :bundle => 'bundle:install'
2323
namespace :bundle do
2424
desc "Run `bundle install` in all subprojects"
2525
task :install do
26-
puts '-'*80
27-
sh "bundle install --gemfile #{__current__}/Gemfile"
28-
puts
2926
subprojects.each do |project|
3027
puts '-'*80
3128
sh "bundle install --gemfile #{__current__.join(project)}/Gemfile"
@@ -41,7 +38,6 @@ namespace :bundle do
4138

4239
desc "Remove Gemfile.lock in all subprojects"
4340
task :clean do
44-
sh "rm -f Gemfile.lock"
4541
subprojects.each do |project|
4642
sh "rm -f #{__current__.join(project)}/Gemfile.lock"
4743
end

0 commit comments

Comments
 (0)