Skip to content

Commit

Permalink
@fix jdbc adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
Tensho committed Dec 5, 2018
1 parent 1352833 commit e803640
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Appraisals
@@ -1,7 +1,9 @@
appraise "rails-4" do
gem "rails", "~> 4.2"
gem 'activerecord-jdbcsqlite3-adapter', '< 50', platforms: :jruby
end

appraise "rails-5" do
gem "rails", "~> 5.2"
gem 'activerecord-jdbcsqlite3-adapter', '>= 50', platforms: :jruby
end
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -6,7 +6,7 @@ gem 'rake'
gem 'redis-namespace'
gem 'rails', '~> 5.2'
gem 'sqlite3', platforms: :ruby
gem 'activerecord-jdbcpostgresql-adapter', platforms: :jruby
gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby

group :development do
gem 'appraisal'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_4.gemfile
Expand Up @@ -6,7 +6,7 @@ gem "rake"
gem "redis-namespace"
gem "rails", "~> 4.2"
gem "sqlite3", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
gem "activerecord-jdbcsqlite3-adapter", "< 50", platforms: :jruby

group :development do
gem "appraisal"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.gemfile
Expand Up @@ -6,7 +6,7 @@ gem "rake"
gem "redis-namespace"
gem "rails", "~> 5.2"
gem "sqlite3", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
gem "activerecord-jdbcsqlite3-adapter", ">= 50", platforms: :jruby

group :development do
gem "appraisal"
Expand Down

0 comments on commit e803640

Please sign in to comment.