-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
85 lines (68 loc) · 1.98 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '>= 3.0'
gem 'ffi', '~> 1.16.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1.2'
gem 'zeitwerk', "~> 2.6.18"
gem 'csv'
gem 'sprockets'
gem 'enumize'
gem 'sqlite3', '~> 1.7'
gem 'pg'
gem 'puma', '>= 6.4'
gem 'terser'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
gem 'bcrypt'
gem 'route_translator'
gem 'globalize'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Reduces boot times through caching; required in config/boot.rb
gem 'font-awesome-rails'
gem 'bootsnap', '>= 1.9.3', require: false
gem 'bootstrap-sass', '~> 3.4.1'
gem 'kaminari'
gem 'browser', "< 6" # support ruby 3.0
gem 'geocoder'
gem 'sass-rails'
gem 'jquery-rails'
gem 'mini_magick'
gem 'simditor'
gem "carrierwave"
gem 'carrierwave-aliyun'
gem 'http'
gem 'wechat'
gem 'minitest'
gem 'unleash', '< 6'
group :development, :test do
# Call 'debugger' anywhere in the code to stop execution and get a debugger console
gem 'debug'
end
group :development do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano3-puma', '~> 6.0.0.beta.1'
gem 'ed25519'
gem 'bcrypt_pbkdf'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.39'
gem 'selenium-webdriver', '>= 4.11.0'
end
group :ci do
gem 'minitest-ci'
gem 'simplecov', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]