diff --git a/test_app/Gemfile b/test_app/Gemfile index 6eb41ea..d2b2026 100644 --- a/test_app/Gemfile +++ b/test_app/Gemfile @@ -4,8 +4,14 @@ gem 'rails', '3.2.2' gem 'impressionist', :path => '../' -gem 'pg' -gem 'sqlite3' +platforms :jruby do + gem 'activerecord-jdbcsqlite3-adapter' + gem 'jdbc-sqlite3' +end + +platforms :ruby, :mswin, :mingw do + gem 'sqlite3' +end gem 'json'