-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (38 loc) · 939 Bytes
/
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
# frozen_string_literal: true
source "https://gems.ruby-china.com"
ruby "2.6.3"
gem "pg", ">= 0.18", "< 2.0"
gem "rails", "~> 6.0"
gem "bootsnap", "~> 1.3", require: false
gem "puma", "~> 3.0"
gem "jbuilder", "~> 2.5"
gem "jb"
gem "pagy"
gem "rails-i18n"
gem "webpacker"
gem "turbolinks", "~> 5"
gem "sass-rails", "~> 5.0"
gem "devise", "~> 4.7"
gem "devise-i18n", "~> 1.6"
gem "searchkick"
gem "oj" # increase json serialize performance
gem "sidekiq"
group :development, :test do
gem "byebug", platform: :mri
gem "database_cleaner"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "rails-controller-testing"
gem "rspec-rails"
gem "shoulda-matchers"
gem "rubocop"
gem "rubocop-rails"
gem "rubocop-performance"
end
group :development do
gem "listen", "~> 3.0.5"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]