summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-06-18 07:10:49 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-06-18 07:10:49 +0000
commitd48146c386c153f1ccaacfa45f420e09868570dd (patch)
tree99d657e0af94dadcf0c70e33e5c657fe822e6a9a
parentba61b13008afd0c9d7fcd80d51a7628930b4566a (diff)
downloadredmine-d48146c386c153f1ccaacfa45f420e09868570dd.tar.gz
redmine-d48146c386c153f1ccaacfa45f420e09868570dd.zip
Gemfile: use jdbc-sqlite3 version >= 3.8.10.1 (#19252)
sqlite-jdbc was updated to 3.8.10.1 in upstream. https://github.com/jruby/activerecord-jdbc-adapter/commit/f7a20b0d577fad569d6f375d3b8f1e63dd02266b git-svn-id: http://svn.redmine.org/redmine/trunk@14329 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index d8be2abd2..b344e0082 100644
--- a/Gemfile
+++ b/Gemfile
@@ -69,7 +69,7 @@ if File.exist?(database_file)
gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
when /sqlite3/
gem "sqlite3", :platforms => [:mri, :mingw, :x64_mingw]
- gem "jdbc-sqlite3", "< 3.8", :platforms => :jruby
+ gem "jdbc-sqlite3", ">= 3.8.10.1", :platforms => :jruby
gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
when /sqlserver/
gem "tiny_tds", "~> 0.6.2", :platforms => [:mri, :mingw, :x64_mingw]