Skip to content

Commit

Permalink
Bump bundler to 2.x (#26)
Browse files Browse the repository at this point in the history
* Bump bundler to 2.4.22

* Create ci.yml
  • Loading branch information
brianswko authored Jun 24, 2024
1 parent a91a36c commit 5889108
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run CI
on: [push]

jobs:
run-rspec-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Run tests
run: |
bundle exec rspec
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rvm:
gemfile:
- gemfiles/activerecord_5.1.gemfile
- gemfiles/activerecord_5.2.gemfile
before_install: gem install bundler -v 1.11.2
before_install: gem install bundler -v 2.4.22
script:
- bundle exec rake db:create
- bundle exec rake spec
2 changes: 1 addition & 1 deletion directory_diff.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "activerecord", ">= 5.1"
spec.add_dependency "pg", "~> 1.1.3"

spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "temping", "~> 3.10.0"
Expand Down

0 comments on commit 5889108

Please sign in to comment.