Fix gemfile for jruby again
Please register or sign in to comment
Repositories are limited in size now to 1GB. If your repository exceeds this size, it will be automatically deleted.
If you'd like access to our CI/CD builders, please create an issue here.
... | ... | @@ -23,8 +23,10 @@ group :development, :test do |
end | ||
group :test do | ||
gem 'pg', platforms: :ruby | ||
gem 'sqlite3' | ||
platforms :ruby do | ||
gem 'pg' | ||
gem 'sqlite3' | ||
end | ||
platforms :jruby do | ||
gem 'activerecord-jdbcpostgresql-adapter' | ||
... | ... |