1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Upgrade ActiveRecord-JDBC-Adapter to master branch

Switch to master branch which provides Version 1.3.x of AR-JDBC adapter.
It strives to provide ActiveRecord 4.x compatibility (as well as still supporting 2.3 and 3.x) from a single code base. It's a recommended update for all AR-JDBC 1.2.x users.
This commit is contained in:
Gaurish Sharma 2013-08-12 01:43:26 +05:30
parent bbaad89ba8
commit 53d682b132

13
Gemfile
View file

@ -61,12 +61,13 @@ platforms :ruby do
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
group :db do
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
end
git 'git://github.com/jruby/activerecord-jdbc-adapter.git' do
gem 'activerecord-jdbcsqlite3-adapter'
group :db do
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
end
end
end
# gems that are necessary for ActiveRecord tests with Oracle database