-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (42 loc) · 1.09 KB
/
Gemfile
File metadata and controls
56 lines (42 loc) · 1.09 KB
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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.6'
# Maestrano Enterprise Engine
# Edge mnoe
gem 'mno-enterprise', git: 'https://github.com/maestrano/mno-enterprise.git'
# gem 'mno-enterprise', '~> 3.0'
# Use puma as the app server
gem 'puma'
gem 'sparkpost', '~> 0.1.4'
# Background jobs
gem 'sucker_punch', '~> 2.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# CORS
gem 'rack-cors'
# Ops gems
group :uat, :production do
gem 'newrelic_rpm'
end
# CI gems
group :development do
# Security audits
gem 'brakeman', require: false
gem 'bundler-audit', require: false
# Style check
gem 'rubocop', '~> 0.39', require: false
gem 'rubocop-rspec', require: false
end
group :development, :test do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec'
end
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
# Code coverage
gem 'simplecov'
end