From 850c1f8524d6b7798f82c84b70bde8c2e2ba77e0 Mon Sep 17 00:00:00 2001 From: Eric Guo Date: Mon, 7 Sep 2015 12:12:17 +0800 Subject: [PATCH] Add windows platform to loading sqlite3 to make testing suite pass, which caused by #1105 --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index e8030a779..7b93d844d 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ end group :test do gem 'activerecord' - gem 'sqlite3', platform: :ruby + gem 'sqlite3', platform: [:ruby, :mingw, :x64_mingw, :mswin] gem 'activerecord-jdbcsqlite3-adapter', platform: :jruby gem 'codeclimate-test-reporter', require: false end @@ -40,5 +40,5 @@ end gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] group :development, :test do - gem 'rubocop', '~> 0.33.0', require: false + gem 'rubocop', '~> 0.34.0', require: false end