Skip to content

Commit

Permalink
Merge pull request #11 from geoblacklight/rails7
Browse files Browse the repository at this point in the history
Support Rails 7
  • Loading branch information
thatbudakguy authored Jun 23, 2022
2 parents c4ef38b + 99dae7a commit b4cad62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.7, 3.0]
rails_version: [6.0.3.4, 6.1.1]
ruby: ['3.0']
rails_version: [6.0.3.4, 6.1.1, 7.0.3]
include:
- ruby: '3.1'
rails_version: 7.0.3
- ruby: 2.7
rails_version: 6.1.1
env:
RAILS_VERSION: ${{ matrix.rails_version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion geo_monitor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|

s.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'Rakefile', 'README.md']

s.add_dependency 'rails', '>= 5.2', '< 6.2'
s.add_dependency 'rails', '>= 5.2', '< 7.2'
s.add_dependency 'faraday'

s.add_development_dependency 'engine_cart', '~> 2.0'
Expand Down

0 comments on commit b4cad62

Please sign in to comment.