Skip to content

Commit a479112

Browse files
authored
Merge branch 'main' into dependabot/bundler/multi-808fc2ea4a
2 parents 8995344 + 3be8322 commit a479112

File tree

20 files changed

+51
-54
lines changed

20 files changed

+51
-54
lines changed

.github/workflows/rubyonrails.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- ruby: '3.4.4'
1414
rails: '7.1.5.1'
1515
allowed_failure: false # ✅ required
16-
- ruby: '3.4.4'
17-
rails: '7.2'
18-
allowed_failure: true # ⚠️ allowed to fail
16+
# - ruby: '3.4.4'
17+
# rails: '7.2'
18+
# allowed_failure: true # ⚠️ allowed to fail
1919
- ruby: '3.4.4'
2020
rails: '8.0'
2121
allowed_failure: true # ⚠️ allowed to fail

AGENTS.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# AGENTS.md
22

3+
Instructions for GitHub Copilot and other automated contributors working in this repository.
4+
35
## Project
46
- Ruby: 3.4.4 (installed via rbenv in setup)
57
- Rails: 7.1
@@ -13,18 +15,17 @@
1315
- Databases:
1416
- development: `community_engine_development`
1517
- test: `community_engine_test`
16-
- Use `DATABASE_URL` to connect (overrides fallback host in database.yml).
18+
- Use `DATABASE_URL` to connect (overrides fallback host in `config/database.yml`).
1719

1820
## Commands
19-
- Run tests: `bin/ci`
21+
- **Tests:** `bin/ci`
2022
(Equivalent: `cd spec/dummy && bundle exec rspec`)
21-
- Lint: `bundle exec rubocop`
22-
- Security: `bundle exec brakeman -q -w2` and `bundle exec bundler-audit --update`
23+
- **Lint:** `bundle exec rubocop`
24+
- **Security:** `bundle exec brakeman -q -w2` and `bundle exec bundler-audit --update`
25+
- **Style:** `bin/codex_style_guard`
2326

2427
## Conventions
2528
- Make incremental changes with passing tests.
2629
- Avoid introducing new external services in tests; stub where possible.
27-
28-
## Code Style
29-
- Always run `bin/codex_style_guard` before proposing a patch.
30-
- If RuboCop reports offenses after autocorrect, update the changes until it passes.
30+
- If RuboCop reports offenses after autocorrect, update and rerun until clean.
31+
- Keep commit messages and PR descriptions concise and informative.

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,19 +161,19 @@ GEM
161161
unf
162162
ast (2.4.3)
163163
aws-eventstream (1.4.0)
164-
aws-partitions (1.1139.0)
165-
aws-sdk-core (3.228.0)
164+
aws-partitions (1.1142.0)
165+
aws-sdk-core (3.229.0)
166166
aws-eventstream (~> 1, >= 1.3.0)
167167
aws-partitions (~> 1, >= 1.992.0)
168168
aws-sigv4 (~> 1.9)
169169
base64
170170
bigdecimal
171171
jmespath (~> 1, >= 1.6.1)
172172
logger
173-
aws-sdk-kms (1.109.0)
173+
aws-sdk-kms (1.110.0)
174174
aws-sdk-core (~> 3, >= 3.228.0)
175175
aws-sigv4 (~> 1.5)
176-
aws-sdk-s3 (1.195.0)
176+
aws-sdk-s3 (1.196.1)
177177
aws-sdk-core (~> 3, >= 3.228.0)
178178
aws-sdk-kms (~> 1)
179179
aws-sigv4 (~> 1.5)
@@ -651,7 +651,7 @@ GEM
651651
rswag-ui (2.16.0)
652652
actionpack (>= 5.2, < 8.1)
653653
railties (>= 5.2, < 8.1)
654-
rubocop (1.79.1)
654+
rubocop (1.79.2)
655655
json (~> 2.3)
656656
language_server-protocol (~> 3.17.0.2)
657657
lint_roller (~> 1.1.0)

app/controllers/better_together/static_page_template_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class StaticPageTemplateController < AbstractController::Base
88
include AbstractController::Helpers
99
include AbstractController::Translation
1010
include AbstractController::AssetPaths
11+
1112
# include ActionController::UrlWriter
1213

1314
# Uncomment if you want to use helpers

app/controllers/better_together/users/confirmations_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class ConfirmationsController < ::Devise::ConfirmationsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/omniauth_callbacks_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class OmniauthCallbacksController < ::Devise::OmniauthCallbacksController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/passwords_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class PasswordsController < ::Devise::PasswordsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/registrations_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module Users
55
# Override default Devise registrations controller
66
class RegistrationsController < ::Devise::RegistrationsController
77
include DeviseLocales
8+
89
skip_before_action :check_platform_privacy
910

1011
def new

app/controllers/better_together/users/sessions_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class SessionsController < ::Devise::SessionsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89

910
def respond_to_on_destroy

app/controllers/better_together/users/unlocks_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class UnlocksController < ::Devise::UnlocksController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

0 commit comments

Comments
 (0)