-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
executable file
·83 lines (67 loc) · 2.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
source "https://rubygems.org"
ruby "2.6.3"
gem "rails", "~> 6.0.0"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 3.11"
gem "sass-rails", "~> 5"
gem "bootsnap", ">= 1.4.2", require: false
gem "rack-canonical-host"
gem "webpacker", "~> 4.0"
gem "redis", '~> 4.0'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# For memory profiling
gem "rack-mini-profiler", require: false
# CSS frameworks
gem "normalize-rails"
gem "alom"
gem "autoprefixer-rails"
group :development do
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.2"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "spring-commands-rspec"
gem "bundler-audit", ">= 0.5.0", require: false
gem "annotate"
gem "rack-timeout", require:"rack/timeout/base"
gem "rails-erd"
gem 'httparty'
# Support for Ruby IDE tools - including "Ruby for Visual Studio Code"
gem 'debase', '~> 0.2.4.1'
gem 'reek', '~> 5.6'
gem 'rubocop', '~> 0.80.0'
gem 'ruby-debug-ide', '~> 0.7.0'
gem 'rubocop-rspec'
gem 'rubocop-performance'
gem 'rubocop-rails', '~> 2.4.2'
# IDE tools for code completion, inline documentation, and static analysis
gem 'solargraph', '~> 0.38.0'
end
# Test gems
group :test do
gem "shoulda-matchers"
# Generate test coverage reports:
gem "simplecov", "~> 0.16.1", require: false
# Format test coverage reports for console output:
gem "simplecov-console", "~> 0.4.2", require: false
gem "simplecov-json", require: false
gem "simplecov-reporter", require: false
gem 'webmock'
end
group :development, :test do
gem "bullet"
# Use Pry as your rails console
gem 'pry-rails', '~> 0.3.9'
# Combine 'pry' with 'byebug'. Adds 'step', 'next', 'finish', 'continue' and
# 'break' commands to control execution.
gem 'pry-byebug', '~> 3.8'
gem "factory_bot_rails"
gem "rspec-rails", "~> 3.8"
gem "ffaker"
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem 'webdrivers', '~> 4.0'
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "devise"