forked from jasl/cybros_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
118 lines (86 loc) · 2.71 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
# frozen_string_literal: true
source 'https://gems.ruby-china.com'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '>= 2.7'
gem 'rails', '~> 6.1.4'
gem 'u-case', require: 'u-case/with_activemodel_validation'
gem 'rails-i18n'
gem 'auto_strip_attributes'
# Use postgresql as the database for Active Record
# gem "pg", ">= 0.18", "< 2.0"
# Use sqlite as the database for Active Record
gem 'mysql2'
# Use Oracle to fetch NC data
gem 'ruby-oci8'
gem 'activerecord-oracle_enhanced-adapter'
gem 'sidekiq'
# Use Puma as the app server
gem 'puma'
# Use development version of Webpacker
gem 'webpacker', '~> 5.4'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'http'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
gem 'image_processing', '~> 1.12'
gem 'mini_magick'
gem 'enumize'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.7.5', require: false
gem 'config'
gem 'devise'
gem 'omniauth_openid_connect'
gem 'devise_invitable'
gem 'devise-i18n'
gem 'devise-jwt'
# bundle config local.pundit /Users/guochunzhong/git/oss/pundit/
gem 'pundit', git: 'https://github.com/thape-cn/pundit', branch: :master
gem 'meta-tags'
gem 'browser'
gem 'ajax-datatables-rails'
gem 'kaminari'
gem 'simple_calendar'
# bundle config local.wechat /Users/guochunzhong/git/oss/wechat/
gem 'wechat', git: 'https://github.com/Eric-Guo/wechat', branch: :main
gem 'jieba-rb'
gem 'similar_text'
gem 'whenever', require: false
gem 'geocoder'
group :production do
gem 'dalli'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console'
gem 'listen'
gem 'brakeman', require: false
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-performance', require: false
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano3-puma'
gem 'capistrano-sidekiq'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'selenium-webdriver'
gem 'webdrivers'
end
group :circle_ci do
gem 'minitest-ci'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]