Skip to content

Commit

Permalink
Specify special sqlite adapter on JRuby in top-level Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Mar 13, 2012
1 parent d0e7326 commit ccb575b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
source 'https://rubygems.org'

platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jdbc-sqlite3'
gem 'jruby-openssl'
end

platforms :ruby, :mswin, :mingw do
gem 'sqlite3'
end

gemspec
1 change: 1 addition & 0 deletions test_app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ gem 'impressionist', :path => '../'
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jdbc-sqlite3'
gem 'jruby-openssl'
end

platforms :ruby, :mswin, :mingw do
Expand Down

0 comments on commit ccb575b

Please sign in to comment.