aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile15
1 files changed, 12 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index e9e3b4d..83bf329 100644
--- a/Gemfile
+++ b/Gemfile
@@ -13,9 +13,18 @@ end
group :development, :test do
require 'rbconfig'
- gem 'sqlite3'
- gem 'mysql2'
- gem 'pg'
+ platforms :jruby do
+ gem 'activerecord-jdbcsqlite3-adapter'
+ gem 'activerecord-jdbcmysql-adapter'
+ gem 'activerecord-jdbcpostgresql-adapter'
+ gem 'jruby-openssl'
+ end
+
+ unless defined?(JRUBY_VERSION)
+ gem 'sqlite3'
+ gem 'mysql2'
+ gem 'pg'
+ end
platforms :mswin, :mingw do
gem 'win32console'