-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (30 loc) · 669 Bytes
/
Gemfile
File metadata and controls
42 lines (30 loc) · 669 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
gem "appraisal"
gem "rake"
group :test do
gem "sidekiq"
gem "capybara"
gem "rack"
gem "rack-session"
gem "rack-test"
gem "rspec"
gem "simplecov"
gem "simplecov-cobertura"
gem "timecop"
gem "rubocop", require: false
gem "rubocop-capybara", require: false
gem "rubocop-performance", require: false
gem "rubocop-rake", require: false
gem "rubocop-rspec", require: false
end
group :development, optional: true do
gem "debug"
gem "guard"
gem "guard-rspec"
end
group :doc, optional: true do
gem "asciidoctor"
gem "yard"
end
gemspec