1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00

3f209b006d was wrong; 'activerecord-jdbc-adapter' gem needs to be limited for Ruby18 compatibility

This commit is contained in:
Ben Atkins 2015-04-16 16:54:24 -04:00
parent 3f209b006d
commit b23453e39b

View file

@ -44,8 +44,9 @@ group :development, :test do
platforms :jruby do
# Use jRuby's sqlite3 adapter for jRuby
gem 'activerecord-jdbcsqlite3-adapter', '1.3.15'
gem 'activerecord-jdbcpostgresql-adapter', '1.3.15'
gem 'activerecord-jdbcmysql-adapter', '1.3.15'
gem 'activerecord-jdbcsqlite3-adapter', '~> 1.3'
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.3'
gem 'activerecord-jdbcmysql-adapter', '~> 1.3'
gem 'activerecord-jdbc-adapter', '1.3.15'
end
end