-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
38 lines (31 loc) · 873 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
source 'https://rubygems.org'
ruby '3.1.2'
gemspec
# To test with the g10 test kit (this also adds the US Core, SMART, and TLS test
# kits):
# - Uncomment this line (and change test kit gem as necessary):
# gem 'onc_certification_g10_test_kit'
# - Run `bundle`
# - Uncomment (and change as necessary) the require at the top of
# `dev_suites/dev_demo_ig_stu1/demo_suite.rb`.
group :development, :test do
gem 'debug'
gem 'rubocop', '~> 1.9'
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-sequel', require: false
end
group :development do
gem 'yard'
gem 'yard-junk'
end
group :test do
gem 'codecov', '0.5.2'
gem 'database_cleaner-sequel'
gem 'factory_bot', '~> 6.1'
gem 'rack-test'
gem 'rspec', '~> 3.10'
gem 'simplecov', '0.21.2', require: false
gem 'simplecov-cobertura'
gem 'webmock', '~> 3.11'
end