-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (38 loc) · 967 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
50
51
source 'http://ruby.taobao.org'
gem 'rails', '3.2.13'
gem 'mysql2'
group :assets do
gem 'sass-rails', '~> 3.2.6'
gem 'coffee-rails', '~> 3.2.2'
gem 'anjlab-bootstrap-rails', '~> 2.3.0.0', :require => 'bootstrap-rails'
gem 'jquery-atwho-rails', '0.1.6'
gem 'uglifier', '>= 1.3.0'
end
#上传组件
gem 'carrierwave'
gem 'mini_magick'
gem 'rest-client'
gem 'carrierwave-aliyun'
#分类树形
gem 'acts_as_tree', '~> 1.3.0'
# 表单
gem 'simple_form'
gem 'jquery-rails'
# 分页
gem 'will_paginate', '~> 3.0.4'
# 分享功能
gem 'social-share-button'
# Bootstrap
gem 'bootstrap-will_paginate', '~> 0.0.9'
gem 'bootstrap_helper', '~> 2.1.2.1'
gem 'rails_kindeditor', :git => '[email protected]:os/rails_kindeditor.git'
# YAML 配置信息
gem 'settingslogic', '~> 2.0.9'
# To use ActiveModel has_secure_password
#gem 'bcrypt-ruby', '~> 3.0.1'
gem 'devise'
gem 'devise-encryptable'
group :production do
gem 'unicorn'
gem 'capistrano'
end