-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
57 lines (49 loc) · 1000 Bytes
/
Gemfile
File metadata and controls
57 lines (49 loc) · 1000 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
46
47
48
49
50
51
52
53
54
55
56
57
source 'https://rubygems.org'
ruby '2.2.0'
gem 'rails', '4.2.5'
gem 'sass-rails', '~> 5.0.4'
gem 'uglifier', '>= 2.7.2'
gem 'pg'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.3.2'
gem 'cancancan'
gem 'meta-tags'
gem 'figaro'
gem 'activeadmin', github: 'activeadmin'
gem 'active_admin_theme'
gem 'active_skin'
gem 'active_admin_datetimepicker'
gem 'kaminari'
gem 'devise', '3.5.3'
gem 'react-rails', '~> 1.5.0'
gem 'aasm'
gem 'chartkick'
# Picture manage
gem 'carrierwave'
gem 'mini_magick'
# Css framework
gem 'nprogress-rails'
gem 'normalize-rails'
gem 'neat'
gem 'font-awesome-rails'
gem 'select2-rails'
group :development, :test do
gem 'thin'
gem 'quiet_assets'
gem 'better_errors'
gem 'annotate'
gem 'ffaker'
gem 'pry-rails'
gem 'pry-byebug'
gem 'brakeman', require: false
end
group :production do
gem 'unicorn'
end
# deploy
group :development, :production do
gem 'capistrano', '~> 3.4.0'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'capistrano-rails'
end