Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies. #291

Merged
merged 1 commit into from
May 20, 2024
Merged
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
508 changes: 254 additions & 254 deletions .yarn/releases/yarn-4.2.1.cjs → .yarn/releases/yarn-4.2.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ enableTelemetry: 0

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.2.1.cjs
yarnPath: .yarn/releases/yarn-4.2.2.cjs
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gem "pg", "1.5.6"
gem "puma", "6.4.2"
gem "rack-attack", "6.7.0"
gem "rack-timeout", "0.6.3"
gem "rails", "7.1.3.2"
gem "rails", "7.1.3.3"
gem "rails-healthcheck", "1.4.0"
gem "redis", "5.2.0"
gem "redis-objects", "1.7.0"
Expand All @@ -25,7 +25,7 @@ gem "turbo-rails", "2.0.5"

group :development, :test do
gem "cacheflow", "0.3.3"
gem "dotenv", "3.1.1"
gem "dotenv", "3.1.2"
gem "pg_query", "5.1.0"
gem "prosopite", "1.4.2"
gem "rspec-rails", "6.1.2"
Expand All @@ -36,11 +36,11 @@ group :development do
gem "erb_lint", "0.5.0", require: false
gem "listen", "3.9.0"
gem "rack-mini-profiler", "3.3.1"
gem "rubocop", "1.63.4", require: false
gem "rubocop", "1.63.5", require: false
gem "rubocop-capybara", "2.20.0", require: false
gem "rubocop-factory_bot", "2.25.1", require: false
gem "rubocop-performance", "1.21.0", require: false
gem "rubocop-rails", "2.24.1", require: false
gem "rubocop-rails", "2.25.0", require: false
gem "rubocop-rake", "0.6.0", require: false
gem "rubocop-rspec", "2.29.2", require: false
gem "rubocop-rspec_rails", "2.28.3", require: false
Expand All @@ -55,7 +55,7 @@ group :test do
gem "faker", "3.3.1"
gem "mock_redis", "0.44.0"
gem "rails-controller-testing", "1.0.5"
gem "selenium-webdriver", "4.20.1"
gem "selenium-webdriver", "4.21.1"
gem "shoulda-matchers", "6.2.0"
gem "simplecov-console", "0.9.1", require: false
end
154 changes: 78 additions & 76 deletions Gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/services/clock/activate_spawns.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def broadcast_spawn(spawn)
def spawns_to_activate
Spawn
.includes(:base, :room)
.where("activates_at <= ?", Time.current)
.where(activates_at: ..Time.current)
.order(activates_at: :asc)
.limit(LIMIT)
end
Expand Down
2 changes: 1 addition & 1 deletion app/services/clock/expire_spawns.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def call
def spawns_to_expire
Spawn
.includes(:entity)
.where("expires_at <= ?", Time.current)
.where(expires_at: ..Time.current)
.order(expires_at: :asc)
.limit(LIMIT)
end
Expand Down
Loading