forked from rom-rb/rom-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
31 lines (25 loc) · 914 Bytes
/
Gemfile
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
27
28
29
30
31
source 'https://rubygems.org'
gemspec
eval_gemfile 'Gemfile.devtools'
if ENV['ROM_CORE_FROM_MASTER'].eql?('true')
gem 'rom-core', git: 'https://github.com/rom-rb/rom.git', branch: 'master'
end
if ENV['DRY_TYPES_FROM_MASTER'].eql?('true')
gem 'dry-types', git: 'https://github.com/dry-rb/dry-types.git', branch: 'master'
end
if ENV['SEQUEL_FROM_MASTER'].eql?('true')
gem 'sequel', git: 'https://github.com/jeremyevans/sequel.git', branch: 'master'
end
group :test do
gem 'pry-byebug', platforms: :ruby
gem 'pry', platforms: :jruby
gem 'activesupport', '~> 5.0'
gem 'pg', '~> 1.1', platforms: :ruby
gem 'mysql2', platforms: :ruby
gem 'jdbc-postgres', '>= 9.4.1212', platforms: :jruby
gem 'jdbc-mysql', platforms: :jruby
gem 'sqlite3', platforms: :ruby
gem 'jdbc-sqlite3', platforms: :jruby
gem 'ruby-oci8', platforms: :ruby if ENV['ROM_USE_ORACLE']
gem 'dotenv', require: false
end