Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
# gem "jbuilder"
# Use Redis adapter to run Action Cable in production
gem "redis", ">= 4.0.1"
gem 'redis-rails'

Check failure on line 13 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]


gem "jwt", "~> 2.8.1"
gem "jwt", "~> 2.10.0"
gem "email_validator", "~> 2.2.4"

# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
Expand All @@ -36,10 +36,10 @@
# gem "rack-cors"

# For rate limiting
gem 'rack-attack'

Check failure on line 39 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

group :development, :test do

Check failure on line 42 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/TrailingWhitespace: Trailing whitespace detected.

# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
Expand All @@ -61,7 +61,7 @@
end

group :test do
gem 'shoulda-matchers', '~> 5.0'

Check failure on line 64 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

Check failure on line 64 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
end

Check failure on line 66 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/TrailingEmptyLines: 2 trailing blank lines detected.

4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ GEM
rdoc (>= 4.0.0)
reline (>= 0.4.2)
json (2.7.6)
jwt (2.8.2)
jwt (2.10.0)
base64
language_server-protocol (3.17.0.3)
logger (1.6.1)
Expand Down Expand Up @@ -304,7 +304,7 @@ DEPENDENCIES
email_validator (~> 2.2.4)
factory_bot_rails (~> 6.4.3)
faker (~> 3.2.3)
jwt (~> 2.8.1)
jwt (~> 2.10.0)
pg (~> 1.1)
puma (>= 5.0)
rack-attack
Expand Down
Loading