aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/asset_pipeline.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-12-311-10/+10
|\
| * [ci skip] trailing documentation whitespaceschneems2013-12-191-10/+10
| |
* | Flag `config.assets.raise_runtime_errors` in devschneems2013-12-191-0/+27
|/ | | | | By default `config.assets.raise_runtime_errors` should be set to `true` in development for new apps. Source: https://github.com/rails/sprockets-rails/pull/100
* :scissors: fix broken url [ci skip]Gaurish Sharma2013-11-091-2/+1
|
* [ci skip] second parameter of asset-url is depricatedEvgeniy2013-10-231-4/+3
|
* Update docs on Tilt::Template in Asset Pipeline guideDavid Verhasselt2013-10-211-3/+8
|
* Add Sass gobbling info to asset pipeline docsDavid Verhasselt2013-10-171-1/+5
| | | | [ci skip]
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2013-08-311-2/+2
|\
| * Moved "`mod_expires` to be enabled" to new line.Prathamesh Sonpatki2013-08-211-2/+2
| | | | | | | | | | | | | | | | | | | | - Right now the comment was not rendering properly. # The Expires* directives requires the Apache module `mod_expires` to be # enabled. - After this change - # The Expires* directives requires the Apache module # `mod_expires` to be enabled.
* | Merge pull request #11986 from fedesoria/patch-3Xavier Noria2013-08-261-0/+5
|\ \ | | | | | | Warning on doc for assets under lib|vendor not precompiling
| * | Warning on doc for assets under lib|vendor not precompilingFederico Soria2013-08-261-0/+5
| |/
* / cleans the guides sources from fancy non-ASCII stuffXavier Noria2013-08-231-6/+6
|/
* Fix a broken linkHiroshige Umino2013-08-091-1/+1
|
* #11759: Update Assets Pipeline GuidePaul Nikitochkin2013-08-061-2/+2
| | | | by default included to precompile only non-js/css files from `app/assets` and `application.(css|js)`
* Update of 'The Asset Pipeline' guide for Rails 4. [ci skip]Adrien Lamothe2013-07-261-229/+537
|
* [ci-skip] Update link, tweak UglifyJSEvan Goer2013-07-131-2/+2
|
* Cleaned up wording and tags.blahedo2013-07-061-3/+3
| | | | | | | | Replaced <br /> with <br> for consistency; Added note about singular/plural distinction (which was previously confusing to a Rails noob); Rephrased explanation of how form is routed to controller, again to reduce confusion; and added explanation to replace incorrect link. [ci skip]
* `initialize_on_precompile` is not used anymore.Terence Lee2013-06-131-19/+0
|
* Merge pull request #10222 from senny/update_bundler_section_in_assets_guideRafael Mendonça França2013-05-231-9/+7
|\ | | | | | | | | docs, adjust the application.rb snippets to match the generated file. Closes #10449
| * asset guide, match application.rb snippets to the generated file [ci skip]Yves Senn2013-04-151-9/+7
| | | | | | | | `if defined?(Bundler)` is no longer used in our current application.rb
* | 2.15.1 is the first release that supports Rails 4.Sam Ruby2013-05-051-1/+1
| | | | | | | | specifically manifest.json
* | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-05-011-4/+4
|\ \
| * | Update assets_pipeline with config.assets.precompile locationZoltan Debre2013-04-231-2/+2
| | | | | | | | | rake assets:precompile will work if config.assets.precompile is in config/application.rb and not in config/environment/production.rb
| * | more Ruby 1.9 Hash syntax in our guidesYves Senn2013-04-151-1/+1
| | |
| * | Added description for mtimePrathamesh Sonpatki2013-04-141-1/+1
| |/
* / Fix guide section about assets precompiling task in production [ci skip]Francesco Rodriguez2013-04-291-1/+1
|/ | | | | | | | You need to specify `RAILS_ENV=production` Related to https://github.com/rails/sass-rails/issues/152. /cc @guilleiguaran
* Revert "added details to section 4.1.2 of the Asset Pipeline guide, ↵Vijay Dev2013-04-111-29/+1
| | | | | | | | | describing how to configure Apache to serve the gzipped version of the precompiled assets" This reverts commit aec466e75294be177f66472fcdbd392831b26fdd. Reason: We're not sure about the correctness and won't want to document something like this with doubts.
* more typos in guidesVipul A M2013-03-201-1/+1
|
* added details to section 4.1.2 of the Asset Pipeline guide, describing how ↵Tim Lowrimore2013-03-151-1/+29
| | | | to configure Apache to serve the gzipped version of the precompiled assets
* Merge remote-tracking branch 'docrails/master'Xavier Noria2013-01-261-10/+10
|\ | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/form_options_helper.rb guides/code/getting_started/app/controllers/comments_controller.rb
| * for recommended Apache configuration of asset pipeline, use <Location> ↵Erik Johnson2013-01-171-2/+2
| | | | | | | | | | | | | | | | instead of <LocationMatch>, to avoid unnecessary reg ex parsing and code <http://httpd.apache.org/docs/2.2/mod/core.html#location (recommended by @jja). - @erikj
| * update assets guide code stylingGosha Arinich2013-01-101-8/+8
| | | | | | | | | | | | * 1.9 hash syntax * proper formatting around one line blocks * do-end for multiline blocks
* | add asset pipeline guides section on implementing & registering own enginesGosha Arinich2013-01-101-1/+25
|/
* copy edits in assets guide [ci skip]Vijay Dev2012-12-211-23/+26
|
* Explain controller specific assets more thoroughlyDamian Galarza2012-12-171-17/+32
| | | | | | | | | The current section on controller specific assets does not really explain how the default application.css and application.js files generated by rails will work with controller specific assets and is a bit ambiguous. We should remind users that they will be included into their application by default but that they have the option to include them only where needed if they want and how this works with precompiling assets. [ci_skip]
* copy editing [ci skip]Vijay Dev2012-12-151-1/+1
|
* Add a small note about the compressing the file, and how that helps the ↵Anuj Dutta2012-12-131-1/+2
| | | | application.
* Remove references to Rails versions.Steve Klabnik2012-12-071-7/+3
| | | | | | | | There's no reason for guides to reference old behaviors. They should be current as of the versions of Rails that they ship with, and including older information just clutters thing. I discussed this change with @fxn and he agrees.
* Punctuation, capitalization, grammar fixes in rails guidesKatie Oldaker2012-12-071-5/+5
|
* Fixed grammar in a lot of guide prologues.Katie Oldaker2012-12-071-5/+5
|
* add a notice about loading assets in production modeTony Jian2012-12-051-1/+18
|
* Normalize on 'After reading this guide, you will know:'Steve Klabnik2012-11-291-1/+2
| | | | | We have three or four different introduction sentences to the guides. After this commit, we use the same one everywhere.
* Asset Pipeline: add 'the'Steve Klabnik2012-11-291-2/+2
| | | | | | Some guides work without 'the'. For instance, 'Migrations' or 'Form Helpers.' But when we talk about the asset pipeline, we... always say 'the asset pipeline.' The guide title should reflect this.
* Add periods to the bullet points in guides.Steve Klabnik2012-11-291-5/+5
| | | | Talked with @fxn about this. Bullet points should have periods at the ends.
* Revert "Switch to 1.9 hash syntax"Vijay Dev2012-11-171-10/+11
| | | | | | This reverts commit d8596c4b8500a899d686c57fa093c549b0378c7a. Reason: too many mistakes [ci skip]
* Switch to 1.9 hash syntaxAgis Anastasopoulos2012-11-151-11/+10
|
* use em-dashes instead of two minuses in guidesburningTyger2012-11-101-4/+4
|
* Further explain the CDN and caching situation.Steve Klabnik2012-11-091-3/+4
|
* Add note about asset pipeline and CDNs.Steve Klabnik2012-11-091-0/+11
| | | | Fixes #2468.
* With the Asset Pipeline the :cache and :concat options aren't used anymoreGuillermo Iguaran2012-10-241-0/+3
|