forked from EBWiki/EBWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
163 lines (124 loc) · 3.66 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
# frozen_string_literal: true
ruby '2.4.1'
source 'https://rubygems.org'
gem 'dotenv-rails', groups: %i[development test production], require: 'dotenv/rails-now'
gem 'rails', '4.2.9'
# Use postgresql as the database for Active Record
gem 'pg', '0.20.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Syntax
gem 'enumerated_type'
# 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'
# Jquery.turbolinks fixes binded event problems cause by Turbolinks
gem 'jquery-turbolinks'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# add back rails observer class removed from rails 4
gem 'rails-observers'
gem 'rack'
# For configurable CORS domain settings
gem 'rack-cors', require: 'rack/cors'
# help with charts and graphs
gem 'active_median'
gem 'chartkick'
gem 'groupdate'
gem 'hightop'
# Simple Captcha for signing up
gem 'gotcha'
# xml sitemap
gem 'sitemap_generator'
# Reduce N+1 queries
gem 'bullet'
# internal analytics
gem 'ahoy_matey'
# use split gem for a/b testing
gem 'split', require: 'split/dashboard'
gem 'rollbar', '~> 2.1'
gem 'simplecov'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'factory_girl_rails'
gem 'guard-rspec'
gem 'rspec-activemodel-mocks'
gem 'rspec-rails', '~> 3.0'
gem 'spring'
# Install a pre-commit hook to enforce code checks before commits
gem 'pre-commit'
end
group :development do
gem 'brakeman', require: false
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end
group :test do
gem 'faker', '~> 1.4.3'
# makes it easy to programatically simulate users' interactions
gem 'capybara', '~> 2.4.3'
gem 'cucumber-rails', require: false
gem 'database_cleaner', '~> 1.3.0'
gem 'launchy', '~> 2.4.2'
gem 'selenium-webdriver', '~> 2.43.0'
gem 'shoulda-matchers', '~> 2.6.2'
end
gem 'bootstrap-sass'
gem 'bootstrap3-datetimepicker-rails'
gem 'devise', '3.5.6'
gem 'momentjs-rails'
gem 'rails_12factor', groups: [:production, :staging]
gem 'simple_form'
# for aws cloud storage
gem 'fog'
# photo resizing
gem 'mini_magick'
# file upload solution
gem 'carrierwave'
# image optimizer that works with carrierwave
gem 'carrierwave-imageoptimizer'
# allow deflated assets with heroku
gem 'heroku_rails_deflate', groups: [:production, :staging]
# CMS panel for admin
gem 'rails_admin', '0.6.7'
gem 'geocoder'
gem 'gmaps4rails'
gem 'puma'
# implement elasticsearch
gem 'searchkick'
# manage nested forms
gem 'cocoon'
# add social share buttons
gem 'social-share-button'
# select tag jquery plugin
gem 'select2-rails'
# follower functionality
gem 'acts_as_follower'
# messaging
gem 'mailboxer', git: 'https://github.com/lacco/mailboxer.git'
# track changes in model objects
gem 'paper_trail', '~> 4.0.0.beta'
# pretty urls
gem 'friendly_id', '~> 5.1.0' # Note: You MUST use 5.0.0 or greater for Rails 4.0+
# pagination
gem 'kaminari'
gem 'redis-namespace', '~> 1.5.0'
# access mailchimp api
gem 'gibbon'
# metatag helper
gem 'metamagic'
# Google News API help
gem 'galerts'
gem 'ckeditor', git: 'https://github.com/galetahub/ckeditor.git'
# New Relic performance monitor
gem 'newrelic_rpm'
# for HTTParty
gem 'httparty'
# for setting middleware redirects
gem 'rack-host-redirect'
gem 'rubocop', require: false