-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
141 lines (115 loc) · 2.54 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.11.3'
gem 'rails-html-sanitizer', '~> 1.4.3'
# TODO: sprockets 4.0.0 needs ruby >= 2.5.0
gem 'sprockets', '~> 3.7.2'
# JWS
gem 'prx_auth-rails', '~> 1.2.0'
## Model
# Use mysql as the database for Active Record
gem 'mysql2'
# ActiveRecord model additions
gem 'acts_as_list'
gem 'event_attribute'
gem 'left_joins'
gem 'paranoia', ' ~> 2.0'
# file uploads
gem 'carrierwave', '~> 0.11'
gem 'fog'
gem 'unf'
# hal api access
gem 'hyperresource'
gem 'oauth2'
# feed import
gem 'addressable'
gem 'excon'
gem 'faraday'
gem 'feedjira'
gem 'loofah'
gem 'nokogiri', '>= 1.8.1'
# Use Sanitize for HTML and CSS whitelisting
gem 'sanitize'
## Controller
gem 'hal_api-rails', '~> 0.3.7'
gem 'responders', '~> 2.0'
# auth
gem 'pundit'
gem 'rack-cors', require: 'rack/cors'
# paging
gem 'kaminari'
# caching
gem 'actionpack-action_caching'
gem 'dalli' # perhaps only production?
## View
# json handling
gem 'oj'
gem 'oj_mimic_json'
gem 'redcarpet'
gem 'reverse_markdown'
gem 'roar'
gem 'roar-rails'
## Messaging
gem 'announce', '~> 0.3.0'
gem 'say_when', '~> 2.x'
gem 'shoryuken', '~> 2.0.11'
## Deployment
# configuration
gem 'dotenv-rails'
# scripting
gem 'highline'
gem 'rake'
# monitoring/logging
gem 'logger'
gem 'lograge'
gem 'newrelic_rpm'
gem 'ougai'
gem 'ougai-formatters-customizable'
# elasticsearch
gem 'elasticsearch-dsl'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# production calendar
gem 'icalendar', '~> 2.5.0'
# SNS for communication with Porter
# NOTE: We can't do the single-package version (aws-sdk-sns) because that
# depends on a newer version of aws-sdk-core than shoryuken supports
gem 'aws-sdk'
# dev-only
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard', '~> 2.10.0'
gem 'guard-bundler'
gem 'guard-minitest'
gem 'quiet_assets'
gem 'rubocop', '0.54.0'
gem 'spring'
gem 'web-console', '~> 2.0'
end
group :test do
gem 'codeclimate-test-reporter', require: false
gem 'codecov', require: false
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'm', '~> 1.5.0'
gem 'minitest-around'
gem 'minitest-reporters', require: false
gem 'minitest-spec-rails'
gem 'shoulda-context'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end
group :development, :test do
gem 'minitest', '~> 5.9.1'
gem 'pry-byebug', '~> 3.4.1'
end
group :doc do
gem 'sdoc', require: false
end
group :production, :staging do
gem 'puma'
gem 'rails_12factor'
end