-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (36 loc) · 757 Bytes
/
Gemfile
File metadata and controls
45 lines (36 loc) · 757 Bytes
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
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.5'
gem 'sass-rails'
gem 'bcrypt'
gem 'bootstrap-sass', '3.3.6'
# for API's needs.
gem 'pundit', '~> 0.3.0'
gem 'active_hash_relation'
gem 'active_model_serializers', '0.9.2'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'uglifier'
# File uploading.
gem 'rmagick'
gem 'carrierwave', '0.11.2'
group :development, :test, :production do
gem 'pg'
end
group :development, :test do
gem 'faker'
gem 'rubocop'
gem 'pry'
end
group :test do
gem 'rspec-rails'
gem 'capybara'
gem 'factory_girl_rails'
gem 'database_cleaner', github: 'bmabey/database_cleaner'
gem 'coveralls', require: false
end
group :production do
gem 'unicorn'
end
gem 'sdoc', require: false