This repository has been archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
147 lines (130 loc) · 3.97 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
source 'https://rubygems.org'
ruby '2.5.0'
# =======================
# CONFIG
# =======================
# Local ENV variables for testing & development
gem 'dotenv-rails', :groups => [:development, :test]
# cloudfoundry utils
gem 'cf-app-utils'
# http://docs.cloudfoundry.org/buildpacks/ruby/ruby-tips.html#rails-4
gem 'rails_serve_static_assets'
# https://github.com/heroku/rails_stdout_logging
gem 'rails_stdout_logging'
# =======================
# RAILS CORE
# =======================
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.4'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.21.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7.0'
# bundle exec rake doc:rails generates the API under doc/api.
#gem 'sdoc', '~> 0.4.1', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Makes running Rails easier - based on 12factor.net
gem 'rails_12factor', group: :production
# =======================
# AUTH & SOCIAL LOGINS
# =======================
# The Core Rails Authentication system
gem 'devise'
# Standardized auth system
gem 'omniauth'
# Use Google APIs and google auth
# https://developers.google.com/api-client-library/ruby/auth/web-app#offline
gem 'google-api-client'
gem "omniauth-google-oauth2"
# Access control
gem "cancancan"
# ffi 19/20/21+ native compile rely on autotools/aclocal not yet in ruby buildpack
gem 'ffi', '1.9.18'
# =======================
# APIs
# =======================
# Slack Support For Notifications https://github.com/rikas/slack-poster
gem 'slack-poster'
# http request wrapper https://github.com/rest-client/rest-client
gem 'rest-client'
# =======================
# UI GEMS
# =======================
gem 'haml'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 2.7.0'
# Compress css to inline styles for HTML emails
gem 'roadie-rails'
# =======================
# JOB QUEUE GEMS
# =======================
# Uses PostgreSQL "advisory locks" for maximum reliability
# https://github.com/chanks/que/blob/master/docs/writing_reliable_jobs.md
gem 'que'
# =======================
# TESTING
# =======================
group :development do
# better error page
gem "better_errors"
gem "binding_of_caller"
gem 'rubyzip', '>= 1.2.1'
end
group :development, :test do
# Test Framework we are using
gem "rspec-rails", "~> 3.7.2"
# Fixtures replacement
gem "factory_bot_rails", "~> 4.8.2"
# Make sure seeds only run in development
gem "seedbank"
end
group :test do
#junit formatter
gem 'rspec_junit_formatter', '0.2.2'
gem "rspec-collection_matchers"
# Fake data generator
gem "faker", "~> 1.6.0"
# Simulate User Interactions
gem "capybara", "~> 2.5.0"
# Easily reset db between tests
gem "database_cleaner", "~> 1.5.0"
# code coverage reporting
gem 'simplecov'
# Open web browser from test suite
#gem "launchy", "~> 2.4.0"
# Test JS browser interactions
#gem "selenium-webdriver", "~> 2.48.0"
end
# =======================
# DEPLOYMENT
# =======================
gem 'capistrano', '~> 3.4.0'
# high performance http rack server
gem 'puma'
# analytics
gem 'prometheus-client'
# web application firewall
gem 'rack-protection'
# caching
gem 'rack-cache'
# ssl redirect
gem 'rack-ssl'
#debugging
gem 'rollbar', '~> 2.15.5'
gem 'oj', '~> 3.4.0'
# =======================
# LIVE RELOAD FOR DEVELOPMENT
# =======================
group :development do
gem 'guard', '~> 2.14.0', :require => false
gem 'guard-livereload', '~> 2.5.0', :require => false
gem 'rack-livereload', '~> 0.3.16'
gem 'rb-fsevent', '~> 0.9.6', :require => false
end