Skip to content

Commit

Permalink
[wip]
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Nov 26, 2023
1 parent b78be36 commit 4f28a26
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:
orm: mongoid
adapter: sqlite3
asset: sprockets
- ruby: jruby-9.3
gemfile: gemfiles/rails_6.1.gemfile
- ruby: jruby-9.4
gemfile: gemfiles/rails_7.0.gemfile
orm: active_record
adapter: mysql2
asset: sprockets
- ruby: jruby-9.3
- ruby: jruby-9.4
gemfile: gemfiles/rails_6.1.gemfile
orm: mongoid
adapter: sqlite3
Expand Down
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ appraise 'rails-7.0' do
group :active_record do
gem 'pg', '>= 1.0.0', platforms: :ruby
gem 'paper_trail', '>= 12.0'

platforms :jruby do
gem 'activerecord-jdbcmysql-adapter', '~> 70.0'
gem 'activerecord-jdbcpostgresql-adapter', '~> 70.0'
gem 'activerecord-jdbcsqlite3-adapter', '~> 70.0'
end
end
end

Expand Down
6 changes: 6 additions & 0 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ group :active_record do
gem "mysql2", ">= 0.3.14"
gem "sqlite3", ">= 1.3"
end

platforms :jruby do
gem "activerecord-jdbcmysql-adapter", "~> 70.0"
gem "activerecord-jdbcpostgresql-adapter", "~> 70.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 70.0"
end
end

group :development, :test do
Expand Down

0 comments on commit 4f28a26

Please sign in to comment.