-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathGemfile
49 lines (38 loc) · 946 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
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"
gem "faker", "~> 3.0"
gem "rspec", "~> 3.0"
gem "dotenv"
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
group :test do
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4")
gem "debug"
else
gem "pry"
gem "pry-byebug", "~> 3.8", platforms: :ruby
end
gem "rom-sql", github: "rom-rb/rom-sql", branch: "release-3.7"
gem "jdbc-postgres", platforms: :jruby
gem "pg", "~> 1.5", platforms: :ruby
end
group :tools do
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4")
gem "byebug", platform: :mri
else
gem "pry-byebug", "~> 3.8", platforms: :ruby
end
gem "redcarpet" # for yard
end
group :benchmarks do
gem "activerecord"
gem "benchmark-ips"
gem "fabrication"
gem "factory_bot"
end