-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathGemfile
49 lines (40 loc) · 1.23 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
eval_gemfile 'Gemfile.devtools'
if ENV['DRY_TYPES_FROM_MASTER'].eql?('true')
gem 'dry-types', github: 'dry-rb/dry-types', branch: 'main'
end
# git 'https://github.com/rom-rb/rom.git', branch: 'release-5.4' do
# gem 'rom'
# gem 'rom-changeset'
# gem 'rom-core'
# gem 'rom-repository'
# end
if ENV['SEQUEL_FROM_MASTER'].eql?('true')
gem 'sequel', github: 'jeremyevans/sequel', branch: 'master'
else
gem 'sequel', '5.87.0'
end
group :test do
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.3')
gem 'debug', platforms: :ruby
else
gem 'pry', '~> 0.12.2', '<= 0.13'
gem 'pry-byebug', platforms: :ruby
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4')
gem 'mutex_m'
gem 'ostruct'
end
gem 'activesupport', '~> 5.0'
gem 'dotenv', require: false
gem 'jdbc-mysql', platforms: :jruby
gem 'jdbc-postgres', '>= 9.4.1212', platforms: :jruby
gem 'jdbc-sqlite3', platforms: :jruby
gem 'mysql2', '~> 0.5', platforms: :ruby
gem 'pg', '~> 1.2', platforms: :ruby
gem 'ruby-oci8', platforms: :ruby if ENV['ROM_USE_ORACLE']
gem 'sequel_pg', require: false, platforms: :ruby
gem 'sqlite3', '~> 1.4', platforms: :ruby
end