forked from test-prof/test-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (27 loc) · 736 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
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", "~> 60.0"
gem "activerecord", "~> 6.0"
end
gem "activerecord", "~> 6.0"
gem "activerecord-import"
gem "factory_bot", "~> 5.0"
gem "fabrication"
gem "sidekiq", "~> 6.0"
gem "timecop", "~> 0.9.1"
platform :mri do
gem "pry-byebug"
gem "ruby-prof", ">= 0.16.0"
gem "stackprof", ">= 0.2.9"
end
end