summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-04-14 12:49:37 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-04-14 12:49:37 +0000
commitb4a8adc1474b4104856fdf2e92b5ca2ebb20b37c (patch)
treefc7dc3e4cc07ba724a4ee6618eaaf034a56598e5
parent1dc76f210b91fdb413d7d6bae6dab13eaed8414c (diff)
downloadredmine-b4a8adc1474b4104856fdf2e92b5ca2ebb20b37c.tar.gz
redmine-b4a8adc1474b4104856fdf2e92b5ca2ebb20b37c.zip
Gemfile: remove activerecord-jdbcsqlite3-adapter version and pin jdbc-sqlite3 version < 3.8 (#19252)
r13829 comment "test/functional/issues_controller_test.rb failure" is due to sqlite3 3.8. git-svn-id: http://svn.redmine.org/redmine/trunk@14175 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index c67a8efbc..761313171 100644
--- a/Gemfile
+++ b/Gemfile
@@ -68,7 +68,8 @@ if File.exist?(database_file)
gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
when /sqlite3/
gem "sqlite3", :platforms => [:mri, :mingw, :x64_mingw]
- gem "activerecord-jdbcsqlite3-adapter", "1.3.11", :platforms => :jruby
+ gem "jdbc-sqlite3", "< 3.8", :platforms => :jruby
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
when /sqlserver/
gem "tiny_tds", "~> 0.6.2", :platforms => [:mri, :mingw, :x64_mingw]
gem "activerecord-sqlserver-adapter", :platforms => [:mri, :mingw, :x64_mingw]