-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (37 loc) · 800 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
43
44
45
46
47
48
49
source 'https://rubygems.org'
gem 'rails', '4.2.0.rc3'
gem 'bcrypt'
gem 'faker'
gem 'pg'
##Pagination support
gem 'kaminari'
##Image manipulations
gem 'carrierwave'
gem 'mini_magick'
gem 'fog'
##Advanced search
gem 'ransack'
gem 'jquery-rails'
gem 'jquery-fileupload-rails'
gem 'jbuilder', '~> 2.0'
gem 'bower-rails'
gem 'foreman'
gem 'puma'
group :production, :staging do
gem "rails_12factor"
gem "rails_stdout_logging"
gem "rails_serve_static_assets"
end
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'foundation-rails'
gem 'foundation-icons-sass-rails'
group :development, :test do
gem 'debugger'
gem 'web-console', '~> 2.0'
end
group :doc do
gem 'sdoc', '~> 0.4.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]