-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathGemfile
More file actions
164 lines (127 loc) · 4.46 KB
/
Copy pathGemfile
File metadata and controls
164 lines (127 loc) · 4.46 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# source 'https://rubygems.org'
source 'https://gems.ruby-china.com'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.0.1'
gem 'mysql2', '~> 0.4.9'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
#//分页 homeland 冲突了,用的will-paginate
# gem 'kaminari'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-validation-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'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
gem 'bcrypt'
#增加一个权限认证的机制
gem 'pundit'
# gem "sinatra-activerecord"
# API 调用频率限制(Rate Limit)
# 我们使用 redis-throttle 来实现这个功能。
gem 'redis-throttle', git: 'git://github.com/andreareginato/redis-throttle.git'
# 图形验证码
gem 'rucaptcha'
# 软删除
gem 'paranoia'
#enum 的一个帮助gem
gem 'acts_as_enum'
gem 'ruby-pinyin'
gem 'sidekiq'
# 地理位置相关的处理
gem 'geocoder'
# param! 参数检测
gem 'rails_param'
# web请求 Ruby Class提供快速Web服务,封装了大量的访问Web的类,是一个简单的HTTP / REST客户端库
gem 'whenever', require: false
gem 'httparty'
# https://github.com/Macrow/rails_kindeditor
# gem 'rails_kindeditor'
# web Crawler 爬虫
gem 'mechanize'
# markdown
gem 'redcarpet'
gem 'coderay'
gem "iconv"
# emoji表情
gem 'emojimmy'
# To use debugger 调试
# 我自己的一个gem
gem 'alidayu_sms'
gem 'puma', '3.12.4'
# 时间统计
gem 'rack-mini-profiler'
gem 'request_store'
# memberchche
gem 'dalli', '~> 2.7.4', :platforms => :ruby
gem 'friendly_id'
gem "bullet", :group => "development"
gem 'react-rails'
gem 'mini_magick'
gem 'rest-client'
# 一些配置 service.yml
gem 'settingslogic'
gem "redis-rails"
gem 'ledermann-rails-settings'
gem 'newrelic_rpm'
gem 'paperclip'
gem 'omniauth-oauth2'
# gem 'omniauth-github'
gem 'rails_admin'
group :development do
gem 'rspec-rails'
gem 'pry-remote'
gem 'pry-nav'
gem 'pry-rails'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'thin'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code. Read more: https://github.com/rails/web-console
gem 'web-console'
# The Listen gem listens to file modifications and notifies you about the changes. Read more: https://github.com/guard/listen
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Makes spring watch files using the listen gem. Read more: https://github.com/jonleighton/spring-watcher-listen
gem 'spring-watcher-listen', '~> 2.0.0'
# Better error page for Rack apps. Read more: https://github.com/charliesome/better_errors
# gem 'better_errors', '2.1.1'
# Retrieve the binding of a method's caller in MRI 1.9.2+. Read more: https://github.com/banister/binding_of_caller
gem 'binding_of_caller', '0.7.2'
# Capistrano: A deployment automation tool built on Ruby, Rake, and SSH. Read more: https://github.com/capistrano/capistrano
gem 'capistrano', '~> 3.5'
# RVM support for Capistrano v3: https://github.com/capistrano/rvm
gem 'capistrano-rvm'
gem 'capistrano-rbenv'
# Puma integration for Capistrano https://github.com/seuros/capistrano-puma
gem 'capistrano3-puma'
# Bundler support for Capistrano 3.x https://github.com/capistrano/bundler
gem 'capistrano-bundler', '~> 1.1.4'
# Rails specific tasks for Capistrano v3: https://github.com/capistrano/rails
gem 'capistrano-rails'
gem 'capistrano-sidekiq'
# Patch-level verification for Bundler. Read more: https://github.com/rubysec/bundler-audit
gem 'bundler-audit', '0.5.0'
end
# Use unicorn as the app server
group :production do
gem 'god'
end
# Gemfile
gem "homeland", '1.0.1'
gem 'font-awesome-sass-rails'
# 如果你用其他 markup 可以不用依赖 github-markup
gem 'github-markup'