diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc index 74d7ea65ceb9b874ce4306c7d4fbe7959b55720e..d927ad04384f5f6eba1e55a69bdc4a5658d49f34 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -13,6 +13,8 @@ Additionally, an Action Mailer class can be used to process incoming email, such as allowing a blog to accept new posts from an email (which could even have been sent from a phone). +You can read more about Action Mailer in the {Action Mailer Basics}[https://edgeguides.rubyonrails.org/action_mailer_basics.html] guide. + == Sending emails The framework works by initializing any instance variables you want to be diff --git a/actionpack/README.rdoc b/actionpack/README.rdoc index f56230ffa01b14d0e8352470f09c22234648f3d3..0884c53c3f2e90f2763a6753e65da426a5babbdd 100644 --- a/actionpack/README.rdoc +++ b/actionpack/README.rdoc @@ -23,6 +23,7 @@ by default and Action View rendering is implicitly triggered by Action Controller. However, these modules are designed to function on their own and can be used outside of Rails. +You can read more about Action Pack in the {Action Controller Overview}[https://guides.rubyonrails.org/action_controller_overview.html] guide. == Download and installation diff --git a/actionview/README.rdoc b/actionview/README.rdoc index 03a07235647a97764a056a6ab246035f5ed8ac88..c14697b5c6f1b5b7cd272dbf85818087b8937f6f 100644 --- a/actionview/README.rdoc +++ b/actionview/README.rdoc @@ -5,6 +5,8 @@ view helpers that assist when building HTML forms, Atom feeds and more. Template formats that Action View handles are ERB (embedded Ruby, typically used to inline short Ruby snippets inside HTML), and XML Builder. +You can read more about Action View in the {Action View Overview}[https://edgeguides.rubyonrails.org/action_view_overview.html] guide. + == Download and installation The latest version of Action View can be installed with RubyGems: diff --git a/activejob/README.md b/activejob/README.md index a2a5289ab7dd77f70901bf3cabb39c32bdf3c347..5c4184f42632912112fcd37f8180ac0be66bed9c 100644 --- a/activejob/README.md +++ b/activejob/README.md @@ -1,4 +1,4 @@ -# Active Job -- Make work happen later +# Active Job – Make work happen later Active Job is a framework for declaring jobs and making them run on a variety of queuing backends. These jobs can be everything from regularly scheduled @@ -17,6 +17,7 @@ about API differences between Delayed Job and Resque. Picking your queuing backend becomes more of an operational concern, then. And you'll be able to switch between them without having to rewrite your jobs. +You can read more about Active Job in the [Active Job Basics](https://edgeguides.rubyonrails.org/active_job_basics.html) guide. ## Usage diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc index 1aaf4813eadff5e6681ef16c120a94a27fd5fbf5..22e0f6c3326cd9bce987d853b46a4c34d351749e 100644 --- a/activemodel/README.rdoc +++ b/activemodel/README.rdoc @@ -5,6 +5,8 @@ They allow for Action Pack helpers to interact with non-Active Record models, for example. Active Model also helps with building custom ORMs for use outside of the Rails framework. +You can read more about Active Model in the {Active Model Basics}[https://edgeguides.rubyonrails.org/active_model_basics.html] guide. + Prior to Rails 3.0, if a plugin or gem developer wanted to have an object interact with Action Pack helpers, it was required to either copy chunks of code from Rails, or monkey patch entire helpers to make them handle objects diff --git a/activerecord/README.rdoc b/activerecord/README.rdoc index 19650b82aef718004a7bfc4efda7e43e333c18e1..7a5fbbc330f3fab567c58e71fe0c656229fbedaa 100644 --- a/activerecord/README.rdoc +++ b/activerecord/README.rdoc @@ -13,6 +13,8 @@ columns. Although these mappings can be defined explicitly, it's recommended to follow naming conventions, especially when getting started with the library. +You can read more about Active Record in the {Active Record Basics}[https://edgeguides.rubyonrails.org/active_record_basics.html] guide. + A short rundown of some of the major features: * Automated mapping between classes and tables, attributes and columns. diff --git a/activestorage/README.md b/activestorage/README.md index 2886169ca75f3540a992369a29b1911e4acd876f..79dd2fb9445a23618b141cd0fe5d757f70305b6b 100644 --- a/activestorage/README.md +++ b/activestorage/README.md @@ -6,6 +6,8 @@ Files can be uploaded from the server to the cloud or directly from the client t Image files can furthermore be transformed using on-demand variants for quality, aspect ratio, size, or any other [MiniMagick](https://github.com/minimagick/minimagick) or [Vips](http://www.rubydoc.info/gems/ruby-vips/Vips/Image) supported transformation. +You can read more about Active Storage in the [Active Storage Overview](https://edgeguides.rubyonrails.org/active_storage_overview.html) guide. + ## Compared to other storage solutions A key difference to how Active Storage works compared to other attachment solutions in Rails is through the use of built-in [Blob](https://github.com/rails/rails/blob/master/activestorage/app/models/active_storage/blob.rb) and [Attachment](https://github.com/rails/rails/blob/master/activestorage/app/models/active_storage/attachment.rb) models (backed by Active Record). This means existing application models do not need to be modified with additional columns to associate with files. Active Storage uses polymorphic associations via the `Attachment` join model, which then connects to the actual `Blob`. diff --git a/activesupport/README.rdoc b/activesupport/README.rdoc index c770324be8f847757ede674cd9c2591ebd78772b..84d7f0221b2455621f4204f2476a5983036f8ae4 100644 --- a/activesupport/README.rdoc +++ b/activesupport/README.rdoc @@ -5,6 +5,7 @@ extensions that were found useful for the Rails framework. These additions reside in this package so they can be loaded as needed in Ruby projects outside of Rails. +You can read more about the extensions in the {Active Support Core Extensions}[https://edgeguides.rubyonrails.org/active_support_core_extensions.html] guide. == Download and installation