-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
42 lines (37 loc) · 949 Bytes
/
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
source 'https://rubygems.org'
ruby "2.3.1"
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'pg', '~> 0.18'
gem 'sass-rails', '~> 5.0'
gem 'sprockets-rails', '2.3.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyrhino'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bcrypt', '~> 3.1', '>= 3.1.11'
gem "pry"
gem 'unicorn'
gem 'carrierwave', '~> 0.11.2'
gem 'fog-aws'
gem 'mini_magick', '~> 4.5', '>= 4.5.1'
gem 'faker', '~> 1.6', '>= 1.6.5'
gem 'jquery-ui-rails'
gem "will_paginate-bootstrap"
group :production do
gem "rails_12factor"
end
group :development do
gem 'byebug', platform: :mri
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'htmlbeautifier'
gem "better_errors"
gem "meta_request"
gem "binding_of_caller"
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]