forked from bcgov/HOUS-permit-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
91 lines (72 loc) · 2.67 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
source "https://rubygems.org"
ruby "3.2.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.2"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
gem "activerecord-nulldb-adapter", "1.0.1" # for Dockerfile asset build
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Use Redis adapter to run Action Cable in production
# gem "redis", ">= 4.0.1"
gem "vite_rails", "3.0.17"
gem "dotenv-rails", "2.8.1", require: "dotenv/rails-now"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[windows jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Authentication
gem "devise", "4.9.3"
gem "devise_invitable", "~> 2.0.9"
gem "devise-jwt", "0.8.1"
gem "devise-jwt-cookie", "0.5.1"
gem "dry-container", "0.8.0"
gem "omniauth-keycloak", "1.5.1"
gem "omniauth-rails_csrf_protection", "1.0.1"
gem "blueprinter", "~> 0.30.0"
gem "awesome_print", "~> 1.9"
gem "sidekiq", "~> 7.2.0"
gem "shrine", "~> 3.5.0"
gem "redis", "~> 5.0.8"
gem "image_processing", "~> 1.12.2"
gem "acts_as_list", "~> 1.1.0"
gem "searchkick", "~> 5.3.1"
gem "elasticsearch", "~> 8.11.0"
gem "kaminari", "~> 1.2.2"
gem "acts-as-taggable-on", "~> 10.0.0"
# Assuming BC Common Object Management Service (COMS) is compatible with S3 formats:
gem "aws-sdk-s3", "~> 1.141.0"
gem "pundit", "~> 2.3.1"
gem "phonelib", "~> 0.8.5"
gem "roo", "~> 2.10"
gem 'discard', '~> 1.2'
gem "faraday", "~> 2.9.0"
gem "factory_bot", "~> 6.4"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri windows]
gem "pry-byebug", "~> 3.10.1"
gem "rspec-rails", "~> 6.1.0"
gem "factory_bot_rails", "~> 6.4.2"
gem "faker", "~> 3.2.2"
gem "shoulda-matchers", "~> 5.3.0"
gem "vcr", "~> 6.2"
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
gem "prettier_print", "~> 1.2"
gem "syntax_tree", "~> 6.2"
gem "syntax_tree-haml", "~> 4.0"
gem "syntax_tree-rbs", "~> 1.0"
gem "letter_opener", "~> 1.8"
end
gem "faraday-multipart", "~> 1.0"