forked from parisrb/paris-rb.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (45 loc) · 1.24 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
source 'https://rubygems.org'
ruby '2.6.4'
gem 'rails', '~> 5.0.0'
gem 'activeresource'
gem 'carrierwave'
gem 'cloudinary'
gem 'coffee-rails', '~> 4.2'
gem 'decent_exposure'
gem 'devise'
gem 'enumerize'
gem 'jquery-rails'
gem 'kaminari'
gem 'meta-tags'
gem 'mustdown'
gem 'newrelic_rpm'
gem 'pg'
gem 'puma'
gem 'rails-i18n'
gem 'rails_admin'
gem 'ransack'
gem 'record_tag_helper'
gem 'redis'
gem 'sass-rails', '~> 5.0'
gem 'simple_form', '~> 3.5.1'
gem 'sitemap_generator', require: false
gem 'slim'
gem 'sucker_punch'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 3.0'
group :development do
gem 'annotate', '>= 2.6.0'
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'irbtools', require: 'irbtools/configure'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rack-mini-profiler'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]