mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix period position
This commit is contained in:
parent
08e97650d6
commit
f166a01b4b
4 changed files with 5 additions and 5 deletions
|
@ -415,7 +415,7 @@ select_datetime(DateTime.now, :prompt =>
|
|||
|
||||
### AssetTag Timestamp Caching
|
||||
|
||||
You're likely familiar with Rails' practice of adding timestamps to static asset paths as a "cache buster." This helps ensure that stale copies of things like images and stylesheets don't get served out of the user's browser cache when you change them on the server. You can now modify this behavior with the `cache_asset_timestamps` configuration option for Action View. If you enable the cache, then Rails will calculate the timestamp once when it first serves an asset, and save that value. This means fewer (expensive) file system calls to serve static assets - but it also means that you can't modify any of the assets while the server is running and expect the changes to get picked up by clients.
|
||||
You're likely familiar with Rails' practice of adding timestamps to static asset paths as a "cache buster". This helps ensure that stale copies of things like images and stylesheets don't get served out of the user's browser cache when you change them on the server. You can now modify this behavior with the `cache_asset_timestamps` configuration option for Action View. If you enable the cache, then Rails will calculate the timestamp once when it first serves an asset, and save that value. This means fewer (expensive) file system calls to serve static assets - but it also means that you can't modify any of the assets while the server is running and expect the changes to get picked up by clients.
|
||||
|
||||
### Asset Hosts as Objects
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ After reading this guide, you will know:
|
|||
* How to contribute to the Ruby on Rails documentation.
|
||||
* How to contribute to the Ruby on Rails code.
|
||||
|
||||
Ruby on Rails is not "someone else's framework." Over the years, thousands of people have contributed to Ruby on Rails ranging from a single character to massive architectural changes or significant documentation - all with the goal of making Ruby on Rails better for everyone. Even if you don't feel up to writing code or documentation yet, there are a variety of other ways that you can contribute, from reporting issues to testing patches.
|
||||
Ruby on Rails is not "someone else's framework". Over the years, thousands of people have contributed to Ruby on Rails ranging from a single character to massive architectural changes or significant documentation - all with the goal of making Ruby on Rails better for everyone. Even if you don't feel up to writing code or documentation yet, there are a variety of other ways that you can contribute, from reporting issues to testing patches.
|
||||
|
||||
As mentioned in [Rails'
|
||||
README](https://github.com/rails/rails/blob/master/README.md), everyone interacting in Rails and its sub-projects' codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Rails [code of conduct](https://rubyonrails.org/conduct/).
|
||||
|
@ -76,7 +76,7 @@ a patch, please send an email to the [rails-core mailing
|
|||
list](https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core). You
|
||||
might get no response, which means that everyone is indifferent. You might find
|
||||
someone who's also interested in building that feature. You might get a "This
|
||||
won't be accepted." But it's the proper place to discuss new ideas. GitHub
|
||||
won't be accepted". But it's the proper place to discuss new ideas. GitHub
|
||||
Issues are not a particularly good venue for the sometimes long and involved
|
||||
discussions new features require.
|
||||
|
||||
|
|
|
@ -198,7 +198,7 @@
|
|||
-
|
||||
name: Contributing to Ruby on Rails
|
||||
url: contributing_to_ruby_on_rails.html
|
||||
description: Rails is not 'somebody else's framework.' This guide covers a variety of ways that you can get involved in the ongoing development of Rails.
|
||||
description: Rails is not "someone else's framework". This guide covers a variety of ways that you can get involved in the ongoing development of Rails.
|
||||
-
|
||||
name: API Documentation Guidelines
|
||||
url: api_documentation_guidelines.html
|
||||
|
|
|
@ -55,7 +55,7 @@ The Rails philosophy includes two major guiding principles:
|
|||
|
||||
* **Don't Repeat Yourself:** DRY is a principle of software development which
|
||||
states that "Every piece of knowledge must have a single, unambiguous, authoritative
|
||||
representation within a system." By not writing the same information over and over
|
||||
representation within a system". By not writing the same information over and over
|
||||
again, our code is more maintainable, more extensible, and less buggy.
|
||||
* **Convention Over Configuration:** Rails has opinions about the best way to do many
|
||||
things in a web application, and defaults to this set of conventions, rather than
|
||||
|
|
Loading…
Reference in a new issue