We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rake bundle:install
1 parent 39b1167 commit f547cfaCopy full SHA for f547cfa
elasticsearch-model/Rakefile
@@ -4,6 +4,15 @@ desc "Run unit tests"
4
task :default => 'test:unit'
5
task :test => 'test:unit'
6
7
+namespace :bundler do
8
+ desc "Install dependencies for all the Gemfiles"
9
+ task :install do
10
+ sh "BUNDLE_GEMFILE='#{File.expand_path('../gemfiles/3.0.gemfile', __FILE__)}' bundle install"
11
+ sh "BUNDLE_GEMFILE='#{File.expand_path('../gemfiles/4.0.gemfile', __FILE__)}' bundle install"
12
+ sh "BUNDLE_GEMFILE='#{File.expand_path('../gemfiles/5.0.gemfile', __FILE__)}' bundle install"
13
+ end
14
+end
15
+
16
# ----- Test tasks ------------------------------------------------------------
17
18
require 'rake/testtask'
0 commit comments