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

Fix links to master branches renamed to main [ci-skip] #50630

Merged
merged 1 commit into from
Jan 7, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion actionpack/lib/action_dispatch/http/permissions_policy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def permissions_policy=(policy)
}.freeze

# List of available permissions can be found at
# https://github.com/w3c/webappsec-permissions-policy/blob/master/features.md#policy-controlled-features
# https://github.com/w3c/webappsec-permissions-policy/blob/main/features.md#policy-controlled-features
DIRECTIVES = {
accelerometer: "accelerometer",
ambient_light_sensor: "ambient-light-sensor",
Expand Down
2 changes: 1 addition & 1 deletion guides/source/4_1_release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Spring is running:
```

Have a look at the
[Spring README](https://github.com/rails/spring/blob/master/README.md) to
[Spring README](https://github.com/rails/spring/blob/main/README.md) to
see all available features.

See the [Upgrading Ruby on Rails](upgrading_ruby_on_rails.html#spring)
Expand Down
2 changes: 1 addition & 1 deletion guides/source/active_storage_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ google:
gsa_email: "foobar@baz.iam.gserviceaccount.com"
```

Add the [`google-cloud-storage`](https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/master/google-cloud-storage) gem to your `Gemfile`:
Add the [`google-cloud-storage`](https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/main/google-cloud-storage) gem to your `Gemfile`:

```ruby
gem "google-cloud-storage", "~> 1.11", require: false
Expand Down
2 changes: 1 addition & 1 deletion guides/source/asset_pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ Making Your Library or Gem a Pre-Processor

Sprockets uses Processors, Transformers, Compressors, and Exporters to extend
Sprockets functionality. Have a look at
[Extending Sprockets](https://github.com/rails/sprockets/blob/master/guides/extending_sprockets.md)
[Extending Sprockets](https://github.com/rails/sprockets/blob/main/guides/extending_sprockets.md)
to learn more. Here we registered a preprocessor to add a comment to the end
of text/css (`.css`) files.

Expand Down
2 changes: 1 addition & 1 deletion guides/source/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ assert_select "ol" do
end
```

This assertion is quite powerful. For more advanced usage, refer to its [documentation](https://github.com/rails/rails-dom-testing/blob/master/lib/rails/dom/testing/assertions/selector_assertions.rb).
This assertion is quite powerful. For more advanced usage, refer to its [documentation](https://github.com/rails/rails-dom-testing/blob/main/lib/rails/dom/testing/assertions/selector_assertions.rb).

### Additional View-Based Assertions

Expand Down