File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
require 'pathname'
2
2
3
- subprojects = %w| elasticsearch-model elasticsearch-rails elasticsearch-persistence |
3
+ subprojects = %w| elasticsearch-rails elasticsearch-persistence elasticsearch-model |
4
4
5
5
__current__ = Pathname ( File . expand_path ( '..' , __FILE__ ) )
6
6
@@ -23,9 +23,6 @@ task :bundle => 'bundle:install'
23
23
namespace :bundle do
24
24
desc "Run `bundle install` in all subprojects"
25
25
task :install do
26
- puts '-' *80
27
- sh "bundle install --gemfile #{ __current__ } /Gemfile"
28
- puts
29
26
subprojects . each do |project |
30
27
puts '-' *80
31
28
sh "bundle install --gemfile #{ __current__ . join ( project ) } /Gemfile"
@@ -41,7 +38,6 @@ namespace :bundle do
41
38
42
39
desc "Remove Gemfile.lock in all subprojects"
43
40
task :clean do
44
- sh "rm -f Gemfile.lock"
45
41
subprojects . each do |project |
46
42
sh "rm -f #{ __current__ . join ( project ) } /Gemfile.lock"
47
43
end
You can’t perform that action at this time.
0 commit comments