-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
130 lines (107 loc) · 2.78 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# source 'https://rubygems.org'
source 'https://ruby.taobao.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.8'
# Use mysql as the database for Active Record
gem 'mysql2', '0.3.20'#, platforms: [:mingw, :mswin, :x64_mingw]
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
#i18n
gem 'rails-i18n'
#rails观察者
gem 'rails-observers'
#bootstrap
gem 'twitter-bootstrap-rails'#, github: 'seyhunak/twitter-bootstrap-rails', branch: 'bootstrap3'
#forms
gem 'simple_form' #, :git => 'git://github.com/plataformatec/simple_form.git'
#grid
gem 'wice_grid', '3.5.0'
#jquery-ui
gem 'jquery-ui-rails'
#jquery模板
gem 'jquery-tmpl-rails'
#jquery form
gem 'jquery-form-rails'
#pjax
gem 'pjax_rails'
#数据库外键添加gem
gem 'foreigner'
#分页插件
gem 'kaminari'
gem 'bootstrap-kaminari-views'
#富文本编辑器
gem 'rails_kindeditor'
#jquery树插件
#gem 'jquery-ztree-rails'
#登录校验
gem 'devise'
gem 'devise-i18n'
#权限校验
gem 'cancancan'
#列表排序关系
gem 'acts_as_list'
#上下级关系
gem 'awesome_nested_set'
#已经删除,enable功能
gem 'paranoid2'
#文件上传
gem 'paperclip', '~> 4.2'
gem 'cocaine'
#图表
gem 'lazy_high_charts'
#定时器
gem 'rufus-scheduler'
# #拼音处理
# gem 'ruby-pinyin'
#极光推送
#gem 'jpush_api_ruby_client'
#网络监控
#gem 'newrelic_rpm'
#服务器
#gem 'thin'
#全平台处理
gem 'rails_12factor'
#webservice
# gem 'soap2r'
gem 'angularjs-rails'
#uuid
# gem 'uuidtools'
gem 'mini_magick'#, :git => 'git://github.com/minimagick/minimagick.git', :ref => '6d0f8f953112cce6324a524d76c7e126ee14f392'
#for excel
gem 'spreadsheet'
#字符串编码处理
gem 'string_utf8'
#浏览器检测
gem 'browser'
gem 'tzinfo-data', platforms: [:mingw, :mswin]
#数据库触发器
# gem 'hairtrigger'
#大数据导入
gem 'activerecord-import'
gem 'mina'
gem 'wx_pay'
gem 'weixin_authorize'