-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
105 lines (87 loc) · 2.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'puma', '~> 5.6'
gem 'rails', '~> 6.1.4'
# Database and Authentication
gem 'bcrypt', '~> 3.1.16'
gem 'cancancan'
gem 'devise'
gem 'pg', '>= 0.18', '< 2.0'
# Assets
gem 'bootstrap'
gem 'execjs'
gem 'filterrific'
gem 'jbuilder', '~> 2.11'
gem 'jquery-rails'
gem 'kaminari'
gem 'mini_racer'
gem 'sass-rails', '~> 6.0'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
# Email
gem 'sendgrid-ruby'
# Documentation
gem 'simplecov-formatter-badge', require: false
gem 'yard', '>= 0.9.20'
# Monitoring
gem 'skylight'
# Seeds
gem 'faker'
group :development, :test do
# Debugging Gems
gem 'binding_of_caller'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'jazz_fingers'
gem 'pry'
gem 'pry-byebug'
gem 'pry-remote'
# Auditing Gems
gem 'rails_best_practices'
gem 'rubocop', require: false
gem 'rubocop-faker', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
# Development Gems
gem 'annotate'
gem 'awesome_print'
gem 'better_errors'
gem 'bullet'
gem 'factory_bot_rails'
gem 'foreman'
gem 'launchy'
end
group :development do
gem 'irb', require: false
gem 'listen', '>= 3.0.5', '< 3.6'
gem 'rails-erd'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
# Profiling
gem 'rack-mini-profiler'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'flamegraph'
gem 'stackprof'
# Scrapers
gem 'httparty'
gem 'nokogiri'
# For email - https://github.com/ryanb/letter_opener
# gem 'letter_opener'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'codecov', require: false
gem 'rails-controller-testing'
gem 'rspec'
gem 'rspec-rails', '~> 5.0.1'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov'
end