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

use bundler 2.1.2 #71

Merged
merged 2 commits into from
Dec 25, 2019
Merged
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
command: |
git submodule init
git submodule update
gem install bundler
bundle install
bundle exec rake
bundle exec rubocop
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ GEM
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-bundler (2.2.1)
bundler (>= 1.3.0, < 3)
guard-bundler (3.0.0)
bundler (>= 2.1, < 3)
guard (~> 2.2)
guard-compat (~> 1.1)
guard-compat (1.2.1)
Expand Down Expand Up @@ -88,7 +88,7 @@ PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.10)
bundler
guard
guard-bundler
guard-rspec
Expand All @@ -102,4 +102,4 @@ DEPENDENCIES
rubocop-performance

BUNDLED WITH
1.17.3
2.1.2
2 changes: 1 addition & 1 deletion jpostcode.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'guard'
spec.add_development_dependency 'guard-bundler'
spec.add_development_dependency 'guard-rubocop'
Expand Down