Skip to content

Commit

Permalink
Add jruby compatible DB gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Feb 1, 2012
1 parent bd7daa0 commit a85aaf6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Gemfile
Expand Up @@ -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'
Expand Down

0 comments on commit a85aaf6

Please sign in to comment.