Skip to content

Commit

Permalink
Upgrade to Bundler 2.x for development
Browse files Browse the repository at this point in the history
  • Loading branch information
odlp committed May 20, 2020
1 parent 2fb424c commit 40c8809
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ base_job: &base_job

- run:
name: install dependencies
command: bundle install --jobs=4 --retry=3 --path vendor/bundle
command: |
gem install bundler --version '~> 2.0'
bundle config set path vendor/bundle
bundle install --jobs=4 --retry=3
- run:
name: install image processsing dependencies
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ PLATFORMS

DEPENDENCIES
appraisal
bundler (~> 1.17)
bundler (~> 2.0)
dotenv
pry
rake
Expand All @@ -80,4 +80,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
1.17.3
2.1.4
2 changes: 1 addition & 1 deletion remove_bg.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "rubyzip", ">= 2.0", "< 3"

spec.add_development_dependency "appraisal"
spec.add_development_dependency "bundler", "~> 1.17"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "dotenv"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
Expand Down

0 comments on commit 40c8809

Please sign in to comment.