1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-26 00:57:17 +00:00

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
This commit is contained in:
Toshi MARUYAMA 2017-04-06 22:10:15 +00:00
parent 42331405da
commit 1553996412

View File

@ -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/