Skip to content

Commit

Permalink
Added Rails 7.2 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed May 30, 2024
1 parent 8e5df40 commit 2185068
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
matrix:
include:
- ruby: 3.3
gemfile: Gemfile
gemfile: gemfiles/rails72.gemfile
- ruby: 3.2
gemfile: Gemfile
- ruby: 3.1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem "rails", "~> 7.1.0"
gem "rake"
gem "minitest"
gem "combustion"
gem "sqlite3"
gem "sqlite3", "< 2"
gem "pg"
gem "mysql2"
gem "trilogy"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails61.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem "rails", "~> 6.1.0"
gem "rake"
gem "minitest"
gem "combustion"
gem "sqlite3"
gem "sqlite3", "< 2"
gem "pg"
gem "mysql2"
gem "activerecord-trilogy-adapter"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails70.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem "rails", "~> 7.0.0"
gem "rake"
gem "minitest"
gem "combustion"
gem "sqlite3"
gem "sqlite3", "< 2"
gem "pg"
gem "mysql2"
gem "activerecord-trilogy-adapter"
Expand Down
18 changes: 18 additions & 0 deletions gemfiles/rails72.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
source "https://rubygems.org"

gemspec path: ".."

gem "rails", "~> 7.2.0.alpha", github: "rails/rails", branch: "7-2-stable"
gem "rake"
gem "minitest"
gem "combustion"
gem "sqlite3"
gem "pg"
gem "mysql2"
gem "trilogy"
gem "mongoid"
gem "browser", "~> 2.0"
gem "user_agent_parser"

# for https://github.com/ruby/cgi/pull/29
gem "cgi", ">= 0.3.6"

0 comments on commit 2185068

Please sign in to comment.