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"
default_rails_version: "8.1.3"
rails_versions:
"8.1":
specific_version: "8.1.0"
specific_version: "8.1.3"
Comment thread
toshimaru marked this conversation as resolved.
latest: true
"8.0":
specific_version: "8.0.3"
Expand Down
2 changes: 1 addition & 1 deletion rails
Submodule rails updated 286 files
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</span><br />
<span>Ruby on Rails 8.1.3</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</span><br />
<span>Ruby on Rails 8.1.3</span><br />

<div class="type">class</div>
<h1>
Expand Down
53 changes: 25 additions & 28 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</span><br />
<span>Ruby on Rails 8.1.3</span><br />

<div class="type">class</div>
<h1>
Expand Down Expand Up @@ -166,7 +166,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -196,15 +196,12 @@ <h3 id="method-c-action_methods"><code><b>action_methods</b>()</code></h3>
# All public instance methods of this class, including ancestors except for
# public instance methods of Base and its ancestors.
methods = public_instance_methods(true) - internal_methods
# Be sure to include shadowed public instance methods of this class.
methods.concat(public_instance_methods(false))
methods.reject! { |m| m.start_with?(&quot;_&quot;) }
methods.map!(&amp;:name)
methods.to_set
end
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L93" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -228,12 +225,12 @@ <h3 id="method-c-clear_action_methods-21"><code><b>clear_action_methods!</b>()</
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 109
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 106
def clear_action_methods!
@action_methods = nil
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L106" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -264,12 +261,12 @@ <h3 id="method-c-controller_path"><code><b>controller_path</b>()</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 121
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 118
def controller_path
@controller_path ||= name.delete_suffix(&quot;Controller&quot;).underscore unless anonymous?
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L118" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -306,7 +303,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L77" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L77" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -330,13 +327,13 @@ <h3 id="method-c-method_added"><code><b>method_added</b>(name)</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 130
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 127
def method_added(name)
super
clear_action_methods!
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L127" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -360,12 +357,12 @@ <h3 id="method-c-supports_path-3F"><code><b>supports_path?</b>()</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 194
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 191
def self.supports_path?
true
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L191" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -393,12 +390,12 @@ <h3 id="method-i-action_methods"><code><b>action_methods</b>()</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 166
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 163
def action_methods
self.class.action_methods
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L163" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -426,7 +423,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L43" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L43" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -457,12 +454,12 @@ <h4 id="method-i-available_action-3F-label-Parameters">Parameters</h4>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 181
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 178
def available_action?(action_name)
_find_action_name(action_name)
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L178" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -486,12 +483,12 @@ <h3 id="method-i-controller_path"><code><b>controller_path</b>()</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 161
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 158
def controller_path
self.class.controller_path
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L158" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -519,7 +516,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L47" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L47" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -543,12 +540,12 @@ <h3 id="method-i-performed-3F"><code><b>performed?</b>()</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 187
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 184
def performed?
response_body
end</code></pre>

<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>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L184" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -574,7 +571,7 @@ <h3 id="method-i-process"><code><b>process</b>(action, ...)</code></h3>
<span class="label">📝 Source code</span>
</summary>

<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 148
<pre><code class="ruby"># File actionpack/lib/abstract_controller/base.rb, line 145
def process(action, ...)
@_action_name = action.to_s

Expand All @@ -587,7 +584,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L148" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/base.rb#L145" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -615,7 +612,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/base.rb#L39" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/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</span><br />
<span>Ruby on Rails 8.1.3</span><br />

<div class="type">module</div>
<h1>
Expand Down Expand Up @@ -116,7 +116,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/caching.rb#L57" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down Expand Up @@ -152,7 +152,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L63" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/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</span><br />
<span>Ruby on Rails 8.1.3</span><br />

<div class="type">module</div>
<h1>
Expand Down Expand Up @@ -73,7 +73,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L52" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/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</span><br />
<span>Ruby on Rails 8.1.3</span><br />

<div class="type">module</div>
<h1>
Expand Down Expand Up @@ -77,7 +77,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L15" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/caching.rb#L15" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand All @@ -104,7 +104,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/1cdd190a25e483b65f1f25bbd0f13a25d696b461/actionpack/lib/abstract_controller/caching.rb#L19" target="_blank" class="github_url">🔎 See on GitHub</a>
<a href="https://github.com/rails/rails/blob/fa8f0812160665bff083a089d2bb2fc1817ea03e/actionpack/lib/abstract_controller/caching.rb#L19" target="_blank" class="github_url">🔎 See on GitHub</a>

</details>

Expand Down
Loading