forked from ruby-china/homeland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
113 lines (84 loc) · 1.7 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
gem "jbuilder"
gem "rails"
gem "rails_autolink"
gem "sass-rails"
gem "turbolinks"
gem "uglifier"
gem "webpacker", "~> 5.x"
gem "view_component", require: "view_component/engine"
gem "pg"
gem "devise"
gem "devise-encryptable"
gem "cancancan"
gem "doorkeeper"
gem "doorkeeper-i18n"
gem "omniauth", "~> 1.x"
gem "omniauth-github"
gem "omniauth-twitter"
gem "omniauth-wechat-oauth2"
gem "omniauth-rails_csrf_protection"
gem "jieba-rb"
gem "dotenv-rails"
gem "rack-attack"
gem "http_accept_language"
gem "rails-i18n"
gem "twemoji"
# Uploader
gem "carrierwave"
# Aliyun / Upyun / Qiniu
gem "carrierwave-aliyun"
gem "carrierwave-upyun"
gem "carrierwave-qiniu"
gem "qiniu"
gem "mini_magick", require: false
# Captcha
gem "rucaptcha"
gem "recaptcha"
# Notification
gem "notifications"
gem "ruby-push-notifications"
gem "action-store"
gem "kaminari"
gem "form-select"
gem "enumize"
gem "pghero"
gem "exception-track"
# Cache
gem "redis"
gem "redis-namespace"
gem "second_level_cache"
# Setting
gem "rails-settings-cached"
# HTML Pipeline
gem "auto-correct"
gem "html-pipeline"
gem "html-pipeline-auto-correct"
gem "redcarpet"
gem "rouge"
gem "sidekiq"
gem "sidekiq-cron"
gem "social-share-button"
# Mailer Service
gem "postmark"
gem "postmark-rails"
gem "puma"
# API cors
gem "rack-cors", require: "rack/cors"
gem "bootsnap"
gem "puma_worker_killer"
group :development do
gem "spring"
gem "byebug"
gem "letter_opener"
gem "derailed_benchmarks"
end
group :development, :test do
gem "listen"
gem "mocha"
gem "minitest-spec-rails"
gem "factory_bot_rails"
gem "standard"
end