Skip to content

Commit

Permalink
test agains newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
scambra committed Oct 16, 2024
1 parent eba8e45 commit 74be768
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 121 deletions.
46 changes: 2 additions & 44 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,52 +7,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.1", "3.0", "2.7", "2.6", "2.5", jruby-9.3, ruby-head]
rails: ["7.0", "6.1", "6.0", "5.2", "5.1", "5.0", main]
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", jruby-9.4, ruby-head]
rails: ["7.2", "7.1", "7.0", "6.1", main]
orm: [active_record, mongoid]
exclude:
- ruby: 2.5
rails: "7.0"
- ruby: 2.5
rails: main
- ruby: 2.6
rails: "7.0"
- ruby: 2.6
rails: main
- ruby: jruby-9.3
rails: "7.0"
- ruby: jruby-9.3
rails: main
- ruby: "3.0"
rails: "5.0"
- ruby: "3.0"
rails: "5.1"
- ruby: "3.0"
rails: "5.2"
- ruby: "3.1"
rails: "5.0"
- ruby: "3.1"
rails: "5.1"
- ruby: "3.1"
rails: "5.2"
- ruby: "3.1"
rails: "6.0"
- ruby: "3.2"
rails: "5.0"
- ruby: "3.2"
rails: "5.1"
- ruby: "3.2"
rails: "5.2"
- ruby: "3.2"
rails: "6.0"
- ruby: ruby-head
rails: "5.0"
- ruby: ruby-head
rails: "5.1"
- ruby: ruby-head
rails: "5.2"
- ruby: ruby-head
rails: "6.0"
- ruby: ruby-head
rails: "6.1"
- ruby: "3.1"
Expand Down
24 changes: 0 additions & 24 deletions gemfiles/Gemfile.rails-5.0

This file was deleted.

24 changes: 0 additions & 24 deletions gemfiles/Gemfile.rails-5.1

This file was deleted.

24 changes: 0 additions & 24 deletions gemfiles/Gemfile.rails-5.2

This file was deleted.

2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group :test do
gem 'actionmailer', '~> 7.0.0'
gem 'activerecord', '~> 7.0.0'
gem 'capybara'
gem 'devise', '~> 4.8.1'
gem 'devise', '~> 4.8'
gem 'mocha'
gem 'mongoid'
gem 'nokogiri'
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/Gemfile.rails-6.0 → gemfiles/Gemfile.rails-7.1
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ group :test do
gem 'sqlite3', '~> 1.4'
end

gem 'actionmailer', '~> 6.0.0'
gem 'activerecord', '~> 6.0.0'
gem 'actionmailer', '~> 7.1.0'
gem 'activerecord', '~> 7.1.0'
gem 'capybara'
gem 'devise', '~> 4.6'
gem 'devise', '~> 4.8'
gem 'mocha'
gem 'mongoid'
gem 'nokogiri'
Expand Down
22 changes: 22 additions & 0 deletions gemfiles/Gemfile.rails-7.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gemspec path: '..'

group :test do
gem "activerecord-jdbcsqlite3-adapter", platforms: [:jruby]

platforms :ruby do
gem 'sqlite3', '~> 1.4'
end

gem 'actionmailer', '~> 7.2.0'
gem 'activerecord', '~> 7.2.0'
gem 'capybara'
gem 'devise', '~> 4.8'
gem 'mocha'
gem 'mongoid'
gem 'nokogiri'
gem 'rspec-rails'
gem 'shoulda'
end
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-main
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ group :test do
end

platforms :ruby do
gem 'sqlite3', '~> 1.4'
gem 'sqlite3', '~> 2.1'
end

gem 'actionmailer', github: 'rails/rails'
Expand Down

0 comments on commit 74be768

Please sign in to comment.