forked from globalize/globalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
26 lines (19 loc) · 681 Bytes
/
Gemfile
File metadata and controls
26 lines (19 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
source "https://rubygems.org"
gemspec
gem "pry"
eval File.read(File.expand_path("../gemfiles/.gemfile.database-config.rb", __FILE__))
platforms :rbx do
gem "rubysl", "~> 2.0"
gem "rubinius-developer_tools"
end
platforms :jruby do
if !ENV['TRAVIS'] || ENV['DB'] == 'sqlite3'
gem 'activerecord-jdbcsqlite3-adapter', github: "jruby/activerecord-jdbc-adapter"
end
if !ENV['TRAVIS'] || ENV['DB'] == 'mysql'
gem 'activerecord-jdbcmysql-adapter', github: "jruby/activerecord-jdbc-adapter"
end
if !ENV['TRAVIS'] || %w(postgres postgresql).include?(ENV['DB'])
gem 'activerecord-jdbcpostgresql-adapter', github: "jruby/activerecord-jdbc-adapter"
end
end