This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Gemfile
68 lines (50 loc) · 1.52 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.2.2.1'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# New Relic
gem 'newrelic_rpm', '~> 5.3'
gem 'haml', '~> 5.0'
gem 'haml-rails', '~> 1.0'
gem 'httparty', '~> 0.15.5'
# Deep Freeze objects
gem 'ice_nine', '~> 0.11.2'
# Auth
gem 'omniauth', '~> 1.5'
gem 'omniauth-openid', '~> 1.0'
# React on Rails
gem 'mini_racer', platforms: :ruby
gem 'react_on_rails', '11.3.0'
gem 'webpacker', '~> 4.0'
# Redis
gem 'redis', '~> 3.3'
gem 'redis-namespace', '~> 1.5', '>= 1.5.2'
gem 'redis-objects', '~> 1.3'
gem 'redis-rails', '~> 5.0'
# Use Puma as the app server
gem 'puma', '~> 3.12'
gem 'stackprof', '~> 0.2.10'
# Rouge Syntax highlighter
gem 'rouge', '~> 2.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'rspec-rails', '~> 3.5'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
gem 'rubocop', '0.59.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'pry'
gem 'pry-byebug'
gem 'pry-stack_explorer'
gem 'brakeman', '~> 4.0'
gem 'bundler-audit', '~> 0.5'
end