Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify bundler task to fix deprecation warnings #725

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion spec/support/outputs/bundle_install.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
echo "-----> Installing gem dependencies using Bundler"
bundle install --without development test --path "vendor/bundle" --deployment
bundle config set --local without 'development test'
bundle config set --local path 'vendor/bundle'
bundle config set --local deployment 'true'
bundle install
5 changes: 4 additions & 1 deletion tasks/mina/bundler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
desc 'Install gem dependencies using Bundler.'
task :install do
comment %(Installing gem dependencies using Bundler)
command %(#{fetch(:bundle_bin)} install #{fetch(:bundle_options)})
command %(#{fetch(:bundle_bin)} config set --local without '#{fetch(:bundle_withouts)}')
command %(#{fetch(:bundle_bin)} config set --local path '#{fetch(:bundle_path)}')
command %(#{fetch(:bundle_bin)} config set --local deployment 'true')
command %(#{fetch(:bundle_bin)} install)
end

desc 'Cleans up unused gems in your bundler directory'
Expand Down