Skip to content

Commit 6e1123f

Browse files
committed
docs: Bump rails from 7.0.4 to 7.0.8
1 parent fa2e9d3 commit 6e1123f

File tree

2,535 files changed

+6261
-5053
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,535 files changed

+6261
-5053
lines changed

src/7.0/navigation.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/classes/AbstractController.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>

src/classes/AbstractController/ActionNotFound.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Class</div>
1111
<h1>

src/classes/AbstractController/ActionNotFound/Correction.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 6.1.3.2</span><br />
8+
<span>Ruby on Rails 6.1.7</span><br />
99

1010
<div class="type">Class</div>
1111
<h1>

src/classes/AbstractController/Base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Class</div>
1111
<h1>
@@ -450,7 +450,7 @@ <h3 id="method-i-action_methods">
450450

451451

452452
<div class="description">
453-
<p>Delegates to the class&#39;s <a href="Base.html#method-c-action_methods"><code>::action_methods</code></a>.</p>
453+
<p>Delegates to the classs <a href="Base.html#method-c-action_methods"><code>::action_methods</code></a>.</p>
454454
</div>
455455

456456

@@ -561,7 +561,7 @@ <h3 id="method-i-controller_path">
561561

562562

563563
<div class="description">
564-
<p>Delegates to the class&#39;s <a href="Base.html#method-c-controller_path"><code>::controller_path</code></a>.</p>
564+
<p>Delegates to the classs <a href="Base.html#method-c-controller_path"><code>::controller_path</code></a>.</p>
565565
</div>
566566

567567

src/classes/AbstractController/Caching.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>

src/classes/AbstractController/Caching/ClassMethods.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>

src/classes/AbstractController/Caching/ConfigMethods.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>

src/classes/AbstractController/Caching/Fragments.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>
@@ -25,7 +25,7 @@ <h1>
2525

2626
<p>Fragment caching is used for caching various blocks within views without caching the entire action as a whole. This is useful when certain elements of an action change frequently or depend on complicated state while other parts rarely change or can be shared amongst multiple parties. The caching is done using the <code>cache</code> helper available in the Action View. See <a href="../../ActionView/Helpers/CacheHelper.html"><code>ActionView::Helpers::CacheHelper</code></a> for more information.</p>
2727

28-
<p>While it&#39;s strongly recommended that you use key-based cache expiration (see links in CacheHelper for more information), it is also possible to manually expire caches. For example:</p>
28+
<p>While its strongly recommended that you use key-based cache expiration (see links in CacheHelper for more information), it is also possible to manually expire caches. For example:</p>
2929

3030
<pre><code>expire_fragment(&#39;name_of_cache&#39;)
3131
</code></pre>
@@ -155,10 +155,10 @@ <h3 id="method-i-expire_fragment">
155155
</li><li>
156156
<p><a href="../../Hash.html"><code>Hash</code></a> - Treated as an implicit call to <code>url_for</code>, like <code>{ controller: &#39;pages&#39;, action: &#39;notes&#39;, id: 45}</code></p>
157157
</li><li>
158-
<p><a href="../../Regexp.html"><code>Regexp</code></a> - Will remove any fragment that matches, so <code>%r{pages/\d*/notes}</code> might remove all notes. Make sure you don&#39;t use anchors in the regex (<code>^</code> or <code>$</code>) because the actual filename matched looks like <code>./cache/filename/path.cache</code>. Note: <a href="../../Regexp.html"><code>Regexp</code></a> expiration is only supported on caches that can iterate over all keys (unlike memcached).</p>
158+
<p><a href="../../Regexp.html"><code>Regexp</code></a> - Will remove any fragment that matches, so <code>%r{pages/\d*/notes}</code> might remove all notes. Make sure you dont use anchors in the regex (<code>^</code> or <code>$</code>) because the actual filename matched looks like <code>./cache/filename/path.cache</code>. Note: <a href="../../Regexp.html"><code>Regexp</code></a> expiration is only supported on caches that can iterate over all keys (unlike memcached).</p>
159159
</li></ul>
160160

161-
<p><code>options</code> is passed through to the cache store&#39;s <code>delete</code> method (or <code>delete_matched</code>, for <a href="../../Regexp.html"><code>Regexp</code></a> keys).</p>
161+
<p><code>options</code> is passed through to the cache stores <code>delete</code> method (or <code>delete_matched</code>, for <a href="../../Regexp.html"><code>Regexp</code></a> keys).</p>
162162
</div>
163163

164164

src/classes/AbstractController/Caching/Fragments/ClassMethods.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="main">
66
<div class="banner">
77

8-
<span>Ruby on Rails 7.0.4</span><br />
8+
<span>Ruby on Rails 7.0.8</span><br />
99

1010
<div class="type">Module</div>
1111
<h1>
@@ -75,7 +75,7 @@ <h3 id="method-i-fragment_cache_key">
7575
end
7676
</code></pre>
7777

78-
<p>When it&#39;s time to invalidate all fragments, simply change the string constant. Or, progressively roll out the cache invalidation using a computed value:</p>
78+
<p>When its time to invalidate all fragments, simply change the string constant. Or, progressively roll out the cache invalidation using a computed value:</p>
7979

8080
<pre><code>class ApplicationController
8181
fragment_cache_key do

0 commit comments

Comments
 (0)