summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2017-04-06 22:10:15 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2017-04-06 22:10:15 +0000
commit155399641246d03c6411aaab207ed7b3e58f6141 (patch)
treebe0fd2378d4517df4ef1d71ae03cc2af7f59dfba /Gemfile
parent42331405da2a7a5916cf2ada6fd55d6abfedba54 (diff)
downloadredmine-155399641246d03c6411aaab207ed7b3e58f6141.tar.gz
redmine-155399641246d03c6411aaab207ed7b3e58f6141.zip
Gemfile: pin sqlite3 1.3.12 on Windows Ruby 1.9.3
git-svn-id: http://svn.redmine.org/redmine/trunk@16516 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index faa193965..cc932aa42 100644
--- a/Gemfile
+++ b/Gemfile
@@ -75,7 +75,8 @@ if File.exist?(database_file)
gem "pg", "~> 0.18.1", :platforms => [:mri, :mingw, :x64_mingw]
gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
when /sqlite3/
- gem "sqlite3", :platforms => [:mri, :mingw, :x64_mingw]
+ gem "sqlite3", (RUBY_VERSION < "2.0" && RUBY_PLATFORM =~ /mingw/ ? "1.3.12" : "~>1.3.12"),
+ :platforms => [:mri, :mingw, :x64_mingw]
gem "jdbc-sqlite3", ">= 3.8.10.1", :platforms => :jruby
gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
when /sqlserver/