-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (30 loc) · 740 Bytes
/
Copy pathGemfile
File metadata and controls
39 lines (30 loc) · 740 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
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in source_monitor.gemspec.
gemspec
gem "puma"
gem "pg"
gem "ostruct"
gem "cgi"
gem "uri"
gem "json"
gem "digest"
gem "propshaft"
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
group :development, :test do
gem "brakeman", require: false
end
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
group :test do
gem "mini_magick"
gem "simplecov", require: false
gem "test-prof", require: false
gem "stackprof", require: false
gem "minitest-mock"
gem "capybara"
gem "webmock"
gem "vcr"
gem "selenium-webdriver"
end