-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
64 lines (44 loc) · 1.19 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
source 'https://rubygems.org'
gem 'rails', '5.2.0'
gem 'mysql2'
gem 'pg'
gem 'rack', '~> 2.0'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bcrypt', '~> 3.1.7'
gem 'rubyzip', '~> 1.2.1'
gem 'acts_as_list'
gem 'layout_by_action'
gem 'aws-sdk', '< 2.0'
gem 'paperclip', '~> 4.2'
gem 'paperclip-ffmpeg', '~> 1.0.0'
gem 'paperclip-av-transcoder'
gem 'delayed_paperclip'
gem 'rmagick', '~> 2.13.4'
gem 'sass-rails'
gem 'jquery-rails'
gem 'json', '~> 1.8.2'
gem 'turbolinks'
gem 'uglifier'
gem 'coffee-rails'
gem 'masonry-rails'
gem 'active_link_to'
gem 'indefinite_article'
gem 'activerecord', '>= 3.0'
gem 'activemodel', '5.2.0'
gem 'actionpack', '5.2.0'
gem 'rails-html-sanitizer', '~> 1.0.4'
gem 'rails_12factor', group: :production
ruby '2.5.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :production do
gem 'puma'
gem 'rack-timeout'
end