forked from EBWiki/EBWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
174 lines (131 loc) · 3.96 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# frozen_string_literal: true
ruby '2.6.5'
source 'https://rubygems.org'
gem 'dotenv-rails', '~> 2.7', groups: %i[development test production], require: 'dotenv/rails-now'
gem 'fullcalendar-rails', '~> 3.9'
gem 'rails', '~> 5.0.7.2'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.2'
# Use SCSS for stylesheets
gem 'sassc-rails', '~> 2.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '4.2'
# Reduce N+1 queries
gem 'bullet', '~> 6.1'
# Use gem pundit for authorization
gem 'pundit', '~> 2.1'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.4'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.2'
gem 'momentjs-rails'
gem 'rack'
# For configurable CORS domain settings
gem 'rack-cors', '~> 1.1', require: 'rack/cors'
# help with charts and graphs
gem 'active_median', '~> 0.2'
gem 'chartkick', '~> 3.4'
gem 'groupdate', '~> 5.0'
gem 'hightop', '~> 0.2'
# xml sitemap
gem 'sitemap_generator', '~> 6.1'
# use split gem for a/b testing
gem 'split', '3.2', require: 'split/dashboard'
gem 'rollbar', '~> 2.16'
gem 'simplecov', '~> 0.16.1'
gem 'twitter', '~> 6.2'
# JSON renderer for Rails
gem 'jb', '~> 0.5.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'factory_bot_rails', '~> 4.10'
gem 'faker', '~> 1.9'
gem 'guard-rspec', '~> 4.7'
gem 'pry-byebug', '~> 3.6'
# Reduce N+1 queries
# gem 'bullet', '~> 5.7'
# Install a pre-commit hook to enforce code checks before commits
gem 'mock_redis'
gem 'pre-commit', '~> 0.38'
gem 'rspec-rails', '~> 3.8'
end
group :development do
gem 'brakeman', '~> 4.3', require: false
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'derailed'
gem 'rails_real_favicon'
gem 'web-console', '~> 3.3'
end
group :test do
# makes it easy to programatically simulate users' interactions
gem 'capybara', '~> 3.4'
gem 'cucumber-rails', '~> 1.6', require: false
gem 'database_cleaner', '~> 1.3.0'
gem 'launchy', '~> 2.4'
gem 'selenium-webdriver', '~> 2.43.0'
gem 'shoulda-matchers', '~> 3.1.1'
gem 'vcr', '~> 3.0', '>= 3.0.3'
gem 'webmock'
end
gem 'bootstrap-sass', '>= 3.4.1'
gem 'bootstrap3-datetimepicker-rails'
gem 'devise', '4.7.1'
gem 'rails_12factor', groups: %i[production staging]
gem 'simple_form', '5.0'
# for aws cloud storage
gem 'fog', '2.0'
# photo resizing
gem 'mini_magick', '~> 4.9'
# file upload solution
gem 'carrierwave', '~> 1.3'
# image optimizer that works with carrierwave
gem 'carrierwave-imageoptimizer'
# CMS panel for admin
gem 'rails_admin', '~> 1.3.0'
gem 'geocoder'
gem 'puma'
# implement elasticsearch
gem 'searchkick', '~> 3.1'
# manage nested forms
gem 'cocoon'
# add social share buttons
gem 'social-share-button'
# select tag jquery plugin
gem 'select2-rails', '~> 4.0'
# follower functionality
gem 'acts_as_follower', github: 'tcocca/acts_as_follower'
# messaging
gem 'mailboxer', '~> 0.15'
# track changes in model objects
gem 'paper_trail', '~> 10.3'
# needed for paper_trail to track changes done via rails_admin views
gem 'paper_trail-association_tracking'
# pretty urls
gem 'friendly_id', '~> 5.2' # Note: You MUST use 5.0.0 or greater for Rails 4.0+
# pagination
gem 'kaminari'
gem 'redis'
gem 'redis-namespace', '~> 1.6'
gem 'redis-rails'
gem 'redis-store'
# access mailchimp api
gem 'gibbon'
# Google News API help
gem 'galerts', '~> 1.1'
gem 'ckeditor', '~> 4.2'
# New Relic performance monitor
gem 'newrelic_rpm', '~> 5.2.0'
# for HTTParty
gem 'httparty', '~> 0.16'
# for setting middleware redirects
gem 'rack-host-redirect', '~> 1.3'
gem 'rubocop', '~> 0.67', require: false
# gem 'rubocop-performance'
# for storing cookies via active record storage to avoid 4kb limit
gem 'activerecord-session_store'
gem 'auto_strip_attributes', '~> 2.5'
gem 'lograge', '~> 0.11'
gem 'recaptcha'
group :production do
gem 'cloudflare-rails', '~> 0.6'
end