Skip to content

Commit 8bc8aa9

Browse files
authored
Merge pull request #112 from toshimaru/bump-older-rails-versions
Build doc for Rails 6.1.7 and 6.0.6
2 parents 6121b18 + 61d1728 commit 8bc8aa9

File tree

4,584 files changed

+4690
-4671
lines changed

Some content is hidden

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

4,584 files changed

+4690
-4671
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
doc-build-latest:
1919
runs-on: ubuntu-latest
20-
name: Rails Doc Build
20+
name: Rails Doc Build (latest)
2121
steps:
2222
- uses: actions/checkout@v3
2323
with:
@@ -27,5 +27,20 @@ jobs:
2727
ruby-version: 3.1
2828
bundler-cache: true
2929
- name: Doc Build
30-
run: |
31-
rake build
30+
run: rake build
31+
32+
doc-build-others:
33+
runs-on: ubuntu-latest
34+
name: Rails Doc Build (older versions)
35+
steps:
36+
- uses: actions/checkout@v3
37+
with:
38+
submodules: true
39+
- name: fetch Rails tags
40+
run: cd rails && git fetch --depth=1 origin refs/tags/v7*:refs/tags/v7* refs/tags/v6*:refs/tags/v6* refs/tags/v5*:refs/tags/v5*
41+
- uses: ruby/setup-ruby@v1
42+
with:
43+
ruby-version: 2.7
44+
bundler-cache: true
45+
- name: Doc Build
46+
run: rake build_multi

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def generate_rails_rdoc
4747
cd 'rails' do
4848
Bundler.with_unbundled_env do
4949
# TODO: use `BUNDLE_ONLY`(require bundler 2.3.19+).
50-
ENV['BUNDLE_WITHOUT'] = 'db:job:storage'
50+
ENV['BUNDLE_WITHOUT'] = 'db:job:storage:cable:ujs:test'
5151

5252
# replace sdoc gem
5353
gemfile = File.read('Gemfile')

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ source: src
55
default_rails_version: 7.0.4
66
rails_versions:
77
"6.1":
8-
specific_version: "6.1.6"
8+
specific_version: "6.1.7"
99
"6.0":
10-
specific_version: "6.0.5"
10+
specific_version: "6.0.6"
1111
"5.2":
1212
specific_version: "5.2.8"
1313
plugins:

src/5.2/navigation.html

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

src/6.0/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 6.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

src/6.0/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 6.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

src/6.0/classes/AbstractController/Base.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.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

src/6.0/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 6.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

src/6.0/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 6.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

src/6.0/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 6.0.5</span><br />
8+
<span>Ruby on Rails 6.0.6</span><br />
99

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

0 commit comments

Comments
 (0)