Skip to content

Commit

Permalink
ci: test against Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jun 10, 2024
1 parent 8b18fa0 commit d6c72b6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
source 'https://rubygems.org'

# We test against other Rails versions, too. See `environments/`
rails_version = '~> 7.0.2'
rails_version = '~> 7.1.3'

gem 'activerecord', rails_version
gem 'actionpack', rails_version

gem 'rspec', '~> 3.12'
gem 'mocha', '~> 2.0'

gem 'sqlite3', '~> 1.4.0'
gem 'sqlite3', '~> 1.5.0'
gem 'mysql2', '~> 0.5.2', :group => :mysql
gem 'pg', '~> 1.2', :group => :pg
14 changes: 14 additions & 0 deletions environments/Gemfile.rails7.0.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
source 'https://rubygems.org'

# We test against other Rails versions, too. See `environments/`
rails_version = '~> 7.0.2'

gem 'activerecord', rails_version
gem 'actionpack', rails_version

gem 'rspec', '~> 3.12'
gem 'mocha', '~> 2.0'

gem 'sqlite3', '~> 1.5.0'
gem 'mysql2', '~> 0.5.2', :group => :mysql
gem 'pg', '~> 1.2', :group => :pg

0 comments on commit d6c72b6

Please sign in to comment.