-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathGemfile
72 lines (58 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gemspec
eval_gemfile 'Gemfile.devtools'
unless defined?(COMPONENTS)
COMPONENTS = %w[core repository changeset].freeze
end
COMPONENTS.each do |component|
gem "rom-#{component}", path: Pathname(__dir__).join(component).realpath
end
if ENV['USE_TRANSPROC_MASTER'].eql?('true')
gem 'transproc', github: 'solnic/transproc', branch: 'master'
end
if ENV['USE_DRY_INITIALIZER_MAIN'].eql?('true')
gem 'dry-initializer', github: 'dry-rb/dry-initializer', branch: 'main'
end
group :sql do
gem 'dry-events', '~> 1.0'
gem 'dry-monitor', '~> 1.0'
gem 'jdbc-postgres', platforms: :jruby
gem 'jdbc-sqlite3', platforms: :jruby
gem 'pg', platforms: :ruby
gem 'sequel', '~> 5.0'
gem 'sqlite3', platforms: :ruby
# if ENV['USE_ROM_SQL_MASTER'].eql?('true')
# gem 'rom-sql', github: 'rom-rb/rom-sql', branch: 'master'
# else
# gem 'rom-sql', '~> 3.0'
# end
gem 'rom-sql', github: 'rom-rb/rom-sql', branch: 'release-3.7'
end
group :test do
gem 'codacy-coverage', require: false
gem 'rspec', '~> 3.6'
gem 'simplecov', platforms: :ruby
gem 'warning'
end
group :docs do
platform :ruby do
gem 'redcarpet'
gem 'yard'
gem 'yard-junk'
end
end
group :tools do
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4.0')
gem 'debug', platforms: :ruby
else
gem 'pry'
gem 'pry-byebug', platforms: :ruby
end
end
group :benchmarks do
# gem 'hotch', platforms: :ruby
gem 'activerecord', '~> 5.0'
gem 'benchmark-ips'
end