Skip to content

Generate Rails 5.2.5 doc #71

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

Merged
merged 4 commits into from
Apr 17, 2021
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
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ task :build do
end
end

cp_r Dir.glob('rails/doc/rdoc/*'), 'src/'
copy_sources = Dir.glob('rails/doc/rdoc/*').reject { |path| path.end_with?("panel", "js", "created.rid") }
cp_r copy_sources, 'src/'

cd 'src' do
cp 'files/railties/RDOC_MAIN_rdoc.html', 'index.html'
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title: RailsDoc(β)
description: Ruby on Rails API Documentation.
url: https://railsdoc.github.io
source: src
target_rails_version: 5.2.4
target_rails_version: 5.2.5
plugins:
- jekyll-include-cache
- jekyll-redirect-from
Expand Down
2 changes: 1 addition & 1 deletion rails
Submodule rails updated 77 files
+1 −1 Gemfile
+49 −51 Gemfile.lock
+1 −1 RAILS_VERSION
+30 −0 actioncable/CHANGELOG.md
+1 −1 actioncable/lib/action_cable/gem_version.rb
+1 −1 actioncable/package.json
+30 −0 actionmailer/CHANGELOG.md
+1 −1 actionmailer/lib/action_mailer/gem_version.rb
+42 −0 actionpack/CHANGELOG.md
+1 −1 actionpack/actionpack.gemspec
+30 −10 actionpack/lib/action_controller/metal/request_forgery_protection.rb
+2 −0 actionpack/lib/action_controller/metal/strong_parameters.rb
+2 −2 actionpack/lib/action_controller/test_case.rb
+5 −4 actionpack/lib/action_dispatch.rb
+14 −0 actionpack/lib/action_dispatch/middleware/session/abstract_store.rb
+11 −6 actionpack/lib/action_dispatch/middleware/session/cache_store.rb
+17 −7 actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
+7 −1 actionpack/lib/action_dispatch/request/session.rb
+1 −0 actionpack/lib/action_dispatch/testing/integration.rb
+1 −1 actionpack/lib/action_pack/gem_version.rb
+2 −1 actionpack/test/controller/integration_test.rb
+8 −0 actionpack/test/controller/parameters/accessors_test.rb
+40 −7 actionpack/test/controller/request_forgery_protection_test.rb
+11 −11 actionpack/test/dispatch/cookies_test.rb
+0 −6 actionpack/test/dispatch/request_test.rb
+1 −1 actionpack/test/dispatch/response_test.rb
+67 −0 actionpack/test/dispatch/session/abstract_secure_store_test.rb
+47 −6 actionpack/test/dispatch/session/cache_store_test.rb
+4 −4 actionpack/test/dispatch/session/cookie_store_test.rb
+6 −0 actionpack/test/dispatch/session/test_session_test.rb
+1 −1 actionpack/test/dispatch/ssl_test.rb
+36 −0 actionview/CHANGELOG.md
+4 −3 actionview/app/assets/javascripts/rails-ujs/utils/ajax.coffee
+1 −1 actionview/lib/action_view/gem_version.rb
+4 −2 actionview/lib/action_view/helpers/javascript_helper.rb
+12 −1 actionview/lib/action_view/helpers/translation_helper.rb
+1 −1 actionview/package.json
+8 −0 actionview/test/template/javascript_helper_test.rb
+7 −0 actionview/test/template/translation_helper_test.rb
+30 −0 activejob/CHANGELOG.md
+1 −1 activejob/lib/active_job/gem_version.rb
+30 −0 activemodel/CHANGELOG.md
+1 −1 activemodel/lib/active_model/gem_version.rb
+39 −0 activerecord/CHANGELOG.md
+2 −2 activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb
+1 −1 activerecord/lib/active_record/gem_version.rb
+8 −0 activerecord/test/cases/adapters/postgresql/money_test.rb
+1 −1 activerecord/test/cases/associations/has_many_associations_test.rb
+1 −1 activerecord/test/cases/core_test.rb
+39 −0 activestorage/CHANGELOG.md
+1 −1 activestorage/activestorage.gemspec
+1 −1 activestorage/lib/active_storage/gem_version.rb
+2 −2 activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb
+2 −2 activestorage/lib/active_storage/service/azure_storage_service.rb
+4 −1 activestorage/lib/active_storage/service/s3_service.rb
+1 −1 activestorage/package.json
+ activestorage/test/fixtures/files/cropped.pdf
+13 −0 activestorage/test/models/preview_test.rb
+16 −5 activestorage/test/previewer/mupdf_previewer_test.rb
+16 −5 activestorage/test/previewer/poppler_pdf_previewer_test.rb
+25 −0 activestorage/test/service/s3_service_test.rb
+31 −0 activesupport/CHANGELOG.md
+2 −11 activesupport/lib/active_support/cache/mem_cache_store.rb
+16 −11 activesupport/lib/active_support/cache/redis_cache_store.rb
+12 −8 activesupport/lib/active_support/duration.rb
+1 −1 activesupport/lib/active_support/gem_version.rb
+6 −6 activesupport/test/cache/behaviors/cache_increment_decrement_behavior.rb
+3 −3 activesupport/test/cache/behaviors/cache_store_behavior.rb
+4 −4 activesupport/test/cache/behaviors/encoded_key_cache_behavior.rb
+5 −5 activesupport/test/cache/behaviors/local_cache_behavior.rb
+2 −2 activesupport/test/cache/stores/mem_cache_store_test.rb
+2 −1 activesupport/test/cache/stores/redis_cache_store_test.rb
+25 −1 activesupport/test/core_ext/duration_test.rb
+30 −0 guides/CHANGELOG.md
+30 −0 railties/CHANGELOG.md
+1 −1 railties/lib/rails/gem_version.rb
+1 −1 version.rb
2 changes: 1 addition & 1 deletion src/_includes/navigation.html

Large diffs are not rendered by default.

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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion 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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion 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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion 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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion 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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion 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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Callbacks/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Collector.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/DoubleRenderError.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Helpers.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Helpers/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Railties.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Railties/RoutesHelpers.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Rendering.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/Translation.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/UrlFor.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/AbstractController/UrlFor/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/Broadcasting.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/Naming.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/Naming/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/PeriodicTimers.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Channel/Streams.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/Authorization.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/Identification.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/InternalChannel.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Module</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/StreamEventLoop.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

<div class="type">Class</div>
<h1>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/ActionCable/Connection/TaggedLoggerProxy.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 5.2.4</span><br />
<span>Ruby on Rails 5.2.5</span><br />

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