forked from test-prof/test-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (30 loc) · 792 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
source 'https://rubygems.org'
# Specify your gem's dependencies in test-prof.gemspec
gemspec
eval_gemfile "gemfiles/rubocop.gemfile"
local_gemfile = File.join(__dir__, "Gemfile.local")
if File.exist?(local_gemfile)
eval_gemfile(local_gemfile) # rubocop:disable Security/Eval
else
platform :mri do
gem "sqlite3", "~> 1.4"
end
platform :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "activerecord", "~> 7.0"
end
gem "activerecord", "~> 7.0"
gem "actionview"
gem "actionpack"
gem "activerecord-import"
gem "factory_bot", "~> 5.0"
gem "fabrication"
gem "sidekiq", "~> 6.0"
gem "timecop", "~> 0.9.1"
platform :mri do
gem "debug" unless ENV["CI"]
gem "ruby-prof", ">= 1.4.0"
gem "stackprof", ">= 0.2.9"
gem "vernier"
end
end