-
Notifications
You must be signed in to change notification settings - Fork 32
/
Gemfile
80 lines (62 loc) · 1.35 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
# frozen_string_literal: true
ruby '2.7.2'
source 'https://rubygems.org'
gem 'bootsnap'
gem 'rails', '~> 5.2.1'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
# Assets
gem 'font-awesome-sass', '~> 4.7.0'
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0'
gem 'summernote-rails'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 3.5'
# Authentication
gem 'clearance'
# Json generation
gem 'jbuilder', '~> 2.5'
# Faker used to seed data (require false)
gem 'faker', require: false
# Slug generation
gem 'friendly_id'
# Background processing
gem 'sidekiq'
# Api Wrappers
gem 'slack-notifier' # Send notifications to slack channels
# Monitoring and error tracking
gem 'bugsnag'
gem 'newrelic_rpm'
gem 'rollbar'
gem 'skylight'
group :development, :test do
# Code analysis
gem 'brakeman'
gem 'rails_best_practices'
gem 'rubocop'
# Debuggging
gem 'awesome_print'
gem 'pry'
gem 'pry-nav'
# Testing
gem 'capybara'
gem 'chromedriver-helper'
gem 'factory_girl_rails'
gem 'fuubar'
gem 'guard'
gem 'guard-rspec'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'terminal-notifier-guard'
# environment variables
gem 'dotenv-rails'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'rack-mini-profiler'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end