Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ title: RailsDoc(β)
description: Ruby on Rails API Documentation.
url: https://railsdoc.github.io
source: src
default_rails_version: "8.1.0.rc1"
default_rails_version: "8.1.0"
rails_versions:
"8.1":
specific_version: "8.1.0.rc1"
specific_version: "8.1.0"
latest: true
"8.0":
specific_version: "8.0.3"
Expand Down
2 changes: 1 addition & 1 deletion rails
Submodule rails updated 90 files
+0 −28 .github/autolabeler.yml
+42 −0 .github/labeler.yml
+0 −12 .github/no-response.yml
+0 −30 .github/stale.yml
+0 −21 .github/verba-sequentur.yml
+24 −0 .github/workflows/labeler.yml
+27 −0 .github/workflows/more-info-needed.yml
+1 −0 .github/workflows/rails-new-docker.yml
+3 −2 .github/workflows/release.yml
+33 −0 .github/workflows/stale.yml
+58 −57 Gemfile.lock
+1 −1 RAILS_VERSION
+1 −6 actioncable/CHANGELOG.md
+1 −1 actioncable/lib/action_cable/gem_version.rb
+1 −1 actioncable/package.json
+1 −6 actionmailbox/CHANGELOG.md
+1 −1 actionmailbox/lib/action_mailbox/gem_version.rb
+1 −3 actionmailer/CHANGELOG.md
+1 −1 actionmailer/lib/action_mailer/gem_version.rb
+5 −3 actionpack/CHANGELOG.md
+1 −1 actionpack/lib/abstract_controller/helpers.rb
+1 −4 actionpack/lib/action_controller/metal/redirecting.rb
+5 −0 actionpack/lib/action_controller/structured_event_subscriber.rb
+4 −2 actionpack/lib/action_dispatch/routing/mapper.rb
+9 −9 actionpack/lib/action_dispatch/testing/request_encoder.rb
+1 −1 actionpack/lib/action_pack/gem_version.rb
+17 −0 actionpack/test/controller/integration_test.rb
+1 −1 actionpack/test/controller/log_subscriber_test.rb
+21 −0 actionpack/test/controller/resources_test.rb
+1 −3 actiontext/CHANGELOG.md
+3 −1 actiontext/lib/action_text/engine.rb
+1 −1 actiontext/lib/action_text/gem_version.rb
+1 −1 actiontext/package.json
+1 −3 actionview/CHANGELOG.md
+1 −1 actionview/lib/action_view/gem_version.rb
+1 −3 activejob/CHANGELOG.md
+1 −1 activejob/lib/active_job/gem_version.rb
+5 −1 activejob/lib/active_job/structured_event_subscriber.rb
+3 −0 activejob/test/cases/structured_event_subscriber_test.rb
+1 −3 activemodel/CHANGELOG.md
+1 −1 activemodel/lib/active_model/gem_version.rb
+23 −3 activerecord/CHANGELOG.md
+1 −0 activerecord/lib/active_record/connection_adapters/postgresql/schema_dumper.rb
+2 −2 activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+12 −8 activerecord/lib/active_record/connection_handling.rb
+1 −1 activerecord/lib/active_record/gem_version.rb
+3 −7 activerecord/lib/active_record/reflection.rb
+2 −1 activerecord/lib/active_record/relation/query_methods.rb
+1 −1 activerecord/lib/active_record/structured_event_subscriber.rb
+126 −0 activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb
+52 −0 activerecord/test/cases/connection_adapters/connection_swapping_nested_test.rb
+12 −0 activerecord/test/cases/reflection_test.rb
+2 −1 activerecord/test/cases/relation/with_test.rb
+6 −0 activerecord/test/models/user.rb
+1 −3 activestorage/CHANGELOG.md
+1 −1 activestorage/lib/active_storage/gem_version.rb
+1 −1 activestorage/package.json
+ activestorage/test/service/configurations.yml.enc
+1 −3 activesupport/CHANGELOG.md
+1 −5 activesupport/lib/active_support.rb
+6 −0 activesupport/lib/active_support/configurable.rb
+1 −1 activesupport/lib/active_support/gem_version.rb
+4 −1 activesupport/test/configurable_test.rb
+1 −6 guides/CHANGELOG.md
+11 −3 guides/assets/stylesrc/highlight.scss
+31 −19 guides/source/8_0_release_notes.md
+211 −0 guides/source/8_1_release_notes.md
+2 −0 guides/source/active_record_basics.md
+5 −0 guides/source/active_record_migrations.md
+278 −278 guides/source/active_support_instrumentation.md
+2 −0 guides/source/association_basics.md
+1,007 −345 guides/source/command_line.md
+1 −1 guides/source/documents.yaml
+102 −72 guides/source/getting_started.md
+10 −25 guides/source/sign_up_and_settings.md
+1,659 −0 guides/source/wishlists.md
+1 −4 railties/CHANGELOG.md
+1 −1 railties/lib/rails/gem_version.rb
+13 −11 railties/lib/rails/generators/rails/app/templates/config/deploy.yml.tt
+0 −19 railties/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_1.rb.tt
+4 −4 railties/lib/rails/generators/rails/app/templates/github/ci.yml.tt
+1 −1 railties/lib/rails/generators/rails/app/templates/kamal-secrets.tt
+25 −4 railties/lib/rails/generators/rails/app/templates/public/400.html
+25 −4 railties/lib/rails/generators/rails/app/templates/public/404.html
+25 −4 railties/lib/rails/generators/rails/app/templates/public/406-unsupported-browser.html
+25 −4 railties/lib/rails/generators/rails/app/templates/public/422.html
+25 −4 railties/lib/rails/generators/rails/app/templates/public/500.html
+5 −0 railties/test/application/configuration_test.rb
+1 −1 tools/releaser/lib/releaser.rb
+3 −3 yarn.lock
2 changes: 1 addition & 1 deletion src/classes/AbstractController.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/ActionNotFound.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Class</div>
<h1>
Expand Down
32 changes: 16 additions & 16 deletions src/classes/AbstractController/Base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Class</div>
<h1>
Expand Down Expand Up @@ -171,7 +171,7 @@ <h3 id="method-c-abstract-21"><code><b>abstract!</b>()</code></h3>
@abstract = true
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -209,7 +209,7 @@ <h3 id="method-c-action_methods"><code><b>action_methods</b>()</code></h3>
end
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L93" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L93" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -238,7 +238,7 @@ <h3 id="method-c-clear_action_methods-21"><code><b>clear_action_methods!</b>()</
@action_methods = nil
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L109" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L109" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -274,7 +274,7 @@ <h3 id="method-c-controller_path"><code><b>controller_path</b>()</code></h3>
@controller_path ||= name.delete_suffix(&quot;Controller&quot;).underscore unless anonymous?
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L121" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L121" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -311,7 +311,7 @@ <h3 id="method-c-internal_methods"><code><b>internal_methods</b>()</code></h3>
controller.public_instance_methods(true) - methods
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L77" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L77" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -341,7 +341,7 @@ <h3 id="method-c-method_added"><code><b>method_added</b>(name)</code></h3>
clear_action_methods!
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L130" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L130" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -370,7 +370,7 @@ <h3 id="method-c-supports_path-3F"><code><b>supports_path?</b>()</code></h3>
true
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L194" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L194" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -403,7 +403,7 @@ <h3 id="method-i-action_methods"><code><b>action_methods</b>()</code></h3>
self.class.action_methods
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L166" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L166" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -431,7 +431,7 @@ <h3 id="method-i-action_name"><code><b>action_name</b></code></h3>
attr_internal :action_name
</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L43" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L43" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -467,7 +467,7 @@ <h4 id="method-i-available_action-3F-label-Parameters">Parameters</h4>
_find_action_name(action_name)
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L181" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L181" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -496,7 +496,7 @@ <h3 id="method-i-controller_path"><code><b>controller_path</b>()</code></h3>
self.class.controller_path
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L161" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L161" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -524,7 +524,7 @@ <h3 id="method-i-formats"><code><b>formats</b></code></h3>
attr_internal :formats
</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L47" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L47" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -553,7 +553,7 @@ <h3 id="method-i-performed-3F"><code><b>performed?</b>()</code></h3>
response_body
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L187" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L187" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -592,7 +592,7 @@ <h3 id="method-i-process"><code><b>process</b>(action, ...)</code></h3>
process_action(action_name, ...)
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L148" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L148" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -620,7 +620,7 @@ <h3 id="method-i-response_body"><code><b>response_body</b></code></h3>
attr_internal :response_body
</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/base.rb#L39" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L39" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
6 changes: 3 additions & 3 deletions src/classes/AbstractController/Caching.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down Expand Up @@ -123,7 +123,7 @@ <h3 id="method-i-view_cache_dependencies"><code><b>view_cache_dependencies</b>()
self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&amp;dep) }
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -159,7 +159,7 @@ <h3 id="method-i-cache"><code><b>cache</b>(key, options = {}, &amp;block)</code>
end
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching.rb#L63" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L63" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
4 changes: 2 additions & 2 deletions src/classes/AbstractController/Caching/ClassMethods.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down Expand Up @@ -78,7 +78,7 @@ <h3 id="method-i-view_cache_dependency"><code><b>view_cache_dependency</b>(&amp;
self._view_cache_dependencies += [dependency]
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching.rb#L52" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L52" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
6 changes: 3 additions & 3 deletions src/classes/AbstractController/Caching/ConfigMethods.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down Expand Up @@ -82,7 +82,7 @@ <h3 id="method-i-cache_store"><code><b>cache_store</b>()</code></h3>
config.cache_store
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching.rb#L15" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L15" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -109,7 +109,7 @@ <h3 id="method-i-cache_store-3D"><code><b>cache_store=</b>(store)</code></h3>
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching.rb#L19" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L19" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
12 changes: 6 additions & 6 deletions src/classes/AbstractController/Caching/Fragments.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down Expand Up @@ -128,7 +128,7 @@ <h3 id="method-i-combined_fragment_cache_key"><code><b>combined_fragment_cache_k
cache_key
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L68" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L68" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -177,7 +177,7 @@ <h3 id="method-i-expire_fragment"><code><b>expire_fragment</b>(key, options = ni
end
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L131" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L131" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -211,7 +211,7 @@ <h3 id="method-i-fragment_exist-3F"><code><b>fragment_exist?</b>(key, options =
end
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L105" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L105" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -246,7 +246,7 @@ <h3 id="method-i-read_fragment"><code><b>read_fragment</b>(key, options = nil)</
end
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L93" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L93" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -282,7 +282,7 @@ <h3 id="method-i-write_fragment"><code><b>write_fragment</b>(key, content, optio
content
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L80" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L80" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down Expand Up @@ -96,7 +96,7 @@ <h3 id="method-i-fragment_cache_key"><code><b>fragment_cache_key</b>(value = nil
self.fragment_cache_keys += [key || -&gt; { value }]
end</code></pre>

<a href="https://github.com/rails/rails/blob/4720fe9c00605d6ad2d50904e98a4d5522ffbce2/actionpack/lib/abstract_controller/caching/fragments.rb#L58" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching/fragments.rb#L58" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Callbacks.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="main">
<div class="banner">

<span>Ruby on Rails 8.1.0.rc1</span><br />
<span>Ruby on Rails 8.1.0</span><br />

<div class="type">Module</div>
<h1>
Expand Down
Loading