aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2013-08-12 01:43:26 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2013-08-12 09:39:46 +0530
commit53d682b1320828d9a0ec31431d1ab54cae03753c (patch)
tree96c38c30678fa73a4c43f1542642d9f492f0ff3d
parentbbaad89ba892b76e581a122893e628dbd306ac7e (diff)
downloadrails-53d682b1320828d9a0ec31431d1ab54cae03753c.tar.gz
rails-53d682b1320828d9a0ec31431d1ab54cae03753c.tar.bz2
rails-53d682b1320828d9a0ec31431d1ab54cae03753c.zip
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.
-rw-r--r--Gemfile13
1 files changed, 7 insertions, 6 deletions
diff --git a/Gemfile b/Gemfile
index 0ab41ec445..cff6ae4dec 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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