rails 4.0.13 → 4.1.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -17
  3. data/guides/CHANGELOG.md +68 -34
  4. data/guides/assets/images/edge_badge.png +0 -0
  5. data/guides/assets/images/feature_tile.gif +0 -0
  6. data/guides/assets/images/footer_tile.gif +0 -0
  7. data/guides/assets/images/fxn.png +0 -0
  8. data/guides/assets/images/getting_started/article_with_comments.png +0 -0
  9. data/guides/assets/images/getting_started/challenge.png +0 -0
  10. data/guides/assets/images/getting_started/confirm_dialog.png +0 -0
  11. data/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
  12. data/guides/assets/images/getting_started/form_with_errors.png +0 -0
  13. data/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
  14. data/guides/assets/images/getting_started/new_article.png +0 -0
  15. data/guides/assets/images/getting_started/rails_welcome.png +0 -0
  16. data/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
  17. data/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
  18. data/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
  19. data/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
  20. data/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
  21. data/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
  22. data/guides/assets/images/header_tile.gif +0 -0
  23. data/guides/assets/images/icons/README +1 -1
  24. data/guides/assets/images/icons/callouts/11.png +0 -0
  25. data/guides/assets/images/icons/callouts/12.png +0 -0
  26. data/guides/assets/images/icons/callouts/13.png +0 -0
  27. data/guides/assets/images/icons/callouts/15.png +0 -0
  28. data/guides/assets/images/icons/caution.png +0 -0
  29. data/guides/assets/images/icons/example.png +0 -0
  30. data/guides/assets/images/radar.png +0 -0
  31. data/guides/assets/images/rails4_features.png +0 -0
  32. data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
  33. data/guides/assets/images/vijaydev.jpg +0 -0
  34. data/guides/assets/javascripts/guides.js +30 -34
  35. data/guides/assets/stylesheets/main.css +2 -1
  36. data/guides/assets/stylesheets/print.css +1 -1
  37. data/guides/bug_report_templates/action_controller_gem.rb +9 -4
  38. data/guides/bug_report_templates/action_controller_master.rb +4 -2
  39. data/guides/bug_report_templates/active_record_gem.rb +5 -2
  40. data/guides/bug_report_templates/active_record_master.rb +2 -1
  41. data/guides/bug_report_templates/generic_gem.rb +15 -0
  42. data/guides/bug_report_templates/generic_master.rb +26 -0
  43. data/guides/code/getting_started/Gemfile +21 -24
  44. data/guides/code/getting_started/Gemfile.lock +78 -73
  45. data/guides/code/getting_started/Rakefile +1 -1
  46. data/guides/code/getting_started/app/assets/javascripts/application.js +1 -2
  47. data/guides/code/getting_started/app/views/layouts/application.html.erb +2 -2
  48. data/guides/code/getting_started/config/environment.rb +1 -1
  49. data/guides/code/getting_started/config/environments/development.rb +2 -2
  50. data/guides/code/getting_started/config/environments/production.rb +3 -3
  51. data/guides/code/getting_started/config/environments/test.rb +2 -2
  52. data/guides/code/getting_started/config/initializers/secret_token.rb +1 -1
  53. data/guides/code/getting_started/config/initializers/session_store.rb +1 -1
  54. data/guides/code/getting_started/config/routes.rb +1 -1
  55. data/guides/code/getting_started/config.ru +1 -1
  56. data/guides/code/getting_started/public/404.html +2 -0
  57. data/guides/code/getting_started/public/422.html +2 -0
  58. data/guides/code/getting_started/public/500.html +2 -0
  59. data/guides/code/getting_started/test/test_helper.rb +0 -3
  60. data/guides/rails_guides/helpers.rb +3 -1
  61. data/guides/source/2_2_release_notes.md +2 -2
  62. data/guides/source/2_3_release_notes.md +8 -8
  63. data/guides/source/3_0_release_notes.md +2 -3
  64. data/guides/source/3_1_release_notes.md +2 -2
  65. data/guides/source/3_2_release_notes.md +12 -12
  66. data/guides/source/4_0_release_notes.md +79 -46
  67. data/guides/source/4_1_release_notes.md +731 -0
  68. data/guides/source/_welcome.html.erb +5 -2
  69. data/guides/source/action_controller_overview.md +189 -40
  70. data/guides/source/action_mailer_basics.md +27 -27
  71. data/guides/source/action_view_overview.md +131 -20
  72. data/guides/source/active_model_basics.md +6 -6
  73. data/guides/source/active_record_basics.md +15 -15
  74. data/guides/source/active_record_callbacks.md +18 -16
  75. data/guides/source/active_record_querying.md +93 -51
  76. data/guides/source/active_record_validations.md +26 -24
  77. data/guides/source/active_support_core_extensions.md +72 -118
  78. data/guides/source/active_support_instrumentation.md +13 -4
  79. data/guides/source/api_documentation_guidelines.md +104 -6
  80. data/guides/source/asset_pipeline.md +573 -244
  81. data/guides/source/association_basics.md +94 -22
  82. data/guides/source/caching_with_rails.md +15 -6
  83. data/guides/source/command_line.md +55 -46
  84. data/guides/source/configuring.md +248 -52
  85. data/guides/source/contributing_to_ruby_on_rails.md +18 -17
  86. data/guides/source/credits.html.erb +2 -2
  87. data/guides/source/debugging_rails_applications.md +39 -8
  88. data/guides/source/development_dependencies_install.md +91 -8
  89. data/guides/source/documents.yaml +4 -0
  90. data/guides/source/engines.md +678 -232
  91. data/guides/source/form_helpers.md +53 -35
  92. data/guides/source/generators.md +19 -15
  93. data/guides/source/getting_started.md +758 -497
  94. data/guides/source/i18n.md +64 -28
  95. data/guides/source/index.html.erb +1 -1
  96. data/guides/source/initialization.md +155 -58
  97. data/guides/source/kindle/toc.html.erb +1 -1
  98. data/guides/source/layout.html.erb +2 -2
  99. data/guides/source/layouts_and_rendering.md +59 -26
  100. data/guides/source/maintenance_policy.md +3 -3
  101. data/guides/source/migrations.md +101 -62
  102. data/guides/source/nested_model_forms.md +3 -3
  103. data/guides/source/plugins.md +34 -31
  104. data/guides/source/rails_application_templates.md +27 -8
  105. data/guides/source/rails_on_rack.md +41 -58
  106. data/guides/source/routing.md +115 -104
  107. data/guides/source/ruby_on_rails_guides_guidelines.md +2 -2
  108. data/guides/source/security.md +81 -36
  109. data/guides/source/testing.md +56 -79
  110. data/guides/source/upgrading_ruby_on_rails.md +531 -21
  111. data/guides/source/working_with_javascript_in_rails.md +19 -11
  112. metadata +51 -23
  113. data/guides/assets/images/getting_started/forbidden_attributes_for_new_post.png +0 -0
  114. data/guides/assets/images/getting_started/new_post.png +0 -0
  115. data/guides/assets/images/getting_started/post_with_comments.png +0 -0
  116. data/guides/assets/images/getting_started/show_action_for_posts.png +0 -0
  117. data/guides/assets/images/getting_started/template_is_missing_posts_new.png +0 -0
  118. data/guides/assets/images/getting_started/undefined_method_post_path.png +0 -0
  119. data/guides/assets/images/getting_started/unknown_action_create_for_posts.png +0 -0
  120. data/guides/assets/images/getting_started/unknown_action_new_for_posts.png +0 -0
  121. data/guides/assets/images/jaimeiniesta.jpg +0 -0
  122. data/guides/source/kindle/KINDLE.md +0 -26
@@ -5,9 +5,9 @@ This guide covers the asset pipeline.
5
5
 
6
6
  After reading this guide, you will know:
7
7
 
8
- * How to understand what the asset pipeline is and what it does.
8
+ * What the asset pipeline is and what it does.
9
9
  * How to properly organize your application assets.
10
- * How to understand the benefits of the asset pipeline.
10
+ * The benefits of the asset pipeline.
11
11
  * How to add a pre-processor to the pipeline.
12
12
  * How to package assets with a gem.
13
13
 
@@ -16,44 +16,97 @@ After reading this guide, you will know:
16
16
  What is the Asset Pipeline?
17
17
  ---------------------------
18
18
 
19
- The asset pipeline provides a framework to concatenate and minify or compress JavaScript and CSS assets. It also adds the ability to write these assets in other languages such as CoffeeScript, Sass and ERB.
19
+ The asset pipeline provides a framework to concatenate and minify or compress
20
+ JavaScript and CSS assets. It also adds the ability to write these assets in
21
+ other languages and pre-processors such as CoffeeScript, Sass and ERB.
20
22
 
21
- Making the asset pipeline a core feature of Rails means that all developers can benefit from the power of having their assets pre-processed, compressed and minified by one central library, Sprockets. This is part of Rails' "fast by default" strategy as outlined by DHH in his keynote at RailsConf 2011.
23
+ The asset pipeline is technically no longer a core feature of Rails 4, it has
24
+ been extracted out of the framework into the
25
+ [sprockets-rails](https://github.com/rails/sprockets-rails) gem.
22
26
 
23
- The asset pipeline is enabled by default. It can be disabled in `config/application.rb` by putting this line inside the application class definition:
27
+ The asset pipeline is enabled by default.
28
+
29
+ You can disable the asset pipeline while creating a new application by
30
+ passing the `--skip-sprockets` option.
31
+
32
+ ```bash
33
+ rails new appname --skip-sprockets
34
+ ```
35
+
36
+ Rails 4 automatically adds the `sass-rails`, `coffee-rails` and `uglifier`
37
+ gems to your Gemfile, which are used by Sprockets for asset compression:
24
38
 
25
39
  ```ruby
26
- config.assets.enabled = false
40
+ gem 'sass-rails'
41
+ gem 'uglifier'
42
+ gem 'coffee-rails'
27
43
  ```
28
44
 
29
- You can also disable the asset pipeline while creating a new application by passing the `--skip-sprockets` option.
45
+ Using the `--skip-sprockets` option will prevent Rails 4 from adding
46
+ `sass-rails` and `uglifier` to Gemfile, so if you later want to enable
47
+ the asset pipeline you will have to add those gems to your Gemfile. Also,
48
+ creating an application with the `--skip-sprockets` option will generate
49
+ a slightly different `config/application.rb` file, with a require statement
50
+ for the sprockets railtie that is commented-out. You will have to remove
51
+ the comment operator on that line to later enable the asset pipeline:
30
52
 
31
- ```bash
32
- rails new appname --skip-sprockets
53
+ ```ruby
54
+ # require "sprockets/railtie"
33
55
  ```
34
56
 
35
- You should use the defaults for all new applications unless you have a specific reason to avoid the asset pipeline.
57
+ To set asset compression methods, set the appropriate configuration options
58
+ in `production.rb` - `config.assets.css_compressor` for your CSS and
59
+ `config.assets.js_compressor` for your Javascript:
36
60
 
61
+ ```ruby
62
+ config.assets.css_compressor = :yui
63
+ config.assets.js_compressor = :uglify
64
+ ```
37
65
 
38
- ### Main Features
66
+ NOTE: The `sass-rails` gem is automatically used for CSS compression if included
67
+ in Gemfile and no `config.assets.css_compressor` option is set.
39
68
 
40
- The first feature of the pipeline is to concatenate assets. This is important in a production environment, because it can reduce the number of requests that a browser makes to render a web page. Web browsers are limited in the number of requests that they can make in parallel, so fewer requests can mean faster loading for your application.
41
69
 
42
- Rails 2.x introduced the ability to concatenate JavaScript and CSS assets by placing `cache: true` at the end of the `javascript_include_tag` and `stylesheet_link_tag` methods. But this technique has some limitations. For example, it cannot generate the caches in advance, and it is not able to transparently include assets provided by third-party libraries.
70
+ ### Main Features
43
71
 
44
- Starting with version 3.1, Rails defaults to concatenating all JavaScript files into one master `.js` file and all CSS files into one master `.css` file. As you'll learn later in this guide, you can customize this strategy to group files any way you like. In production, Rails inserts an MD5 fingerprint into each filename so that the file is cached by the web browser. You can invalidate the cache by altering this fingerprint, which happens automatically whenever you change the file contents.
72
+ The first feature of the pipeline is to concatenate assets, which can reduce the
73
+ number of requests that a browser makes to render a web page. Web browsers are
74
+ limited in the number of requests that they can make in parallel, so fewer
75
+ requests can mean faster loading for your application.
45
76
 
46
- The second feature of the asset pipeline is asset minification or compression. For CSS files, this is done by removing whitespace and comments. For JavaScript, more complex processes can be applied. You can choose from a set of built in options or specify your own.
77
+ Sprockets concatenates all JavaScript files into one master `.js` file and all
78
+ CSS files into one master `.css` file. As you'll learn later in this guide, you
79
+ can customize this strategy to group files any way you like. In production,
80
+ Rails inserts an MD5 fingerprint into each filename so that the file is cached
81
+ by the web browser. You can invalidate the cache by altering this fingerprint,
82
+ which happens automatically whenever you change the file contents.
47
83
 
48
- The third feature of the asset pipeline is that it allows coding assets via a higher-level language, with precompilation down to the actual assets. Supported languages include Sass for CSS, CoffeeScript for JavaScript, and ERB for both by default.
84
+ The second feature of the asset pipeline is asset minification or compression.
85
+ For CSS files, this is done by removing whitespace and comments. For JavaScript,
86
+ more complex processes can be applied. You can choose from a set of built in
87
+ options or specify your own.
88
+
89
+ The third feature of the asset pipeline is it allows coding assets via a
90
+ higher-level language, with precompilation down to the actual assets. Supported
91
+ languages include Sass for CSS, CoffeeScript for JavaScript, and ERB for both by
92
+ default.
49
93
 
50
94
  ### What is Fingerprinting and Why Should I Care?
51
95
 
52
- Fingerprinting is a technique that makes the name of a file dependent on the contents of the file. When the file contents change, the filename is also changed. For content that is static or infrequently changed, this provides an easy way to tell whether two versions of a file are identical, even across different servers or deployment dates.
96
+ Fingerprinting is a technique that makes the name of a file dependent on the
97
+ contents of the file. When the file contents change, the filename is also
98
+ changed. For content that is static or infrequently changed, this provides an
99
+ easy way to tell whether two versions of a file are identical, even across
100
+ different servers or deployment dates.
53
101
 
54
- When a filename is unique and based on its content, HTTP headers can be set to encourage caches everywhere (whether at CDNs, at ISPs, in networking equipment, or in web browsers) to keep their own copy of the content. When the content is updated, the fingerprint will change. This will cause the remote clients to request a new copy of the content. This is generally known as _cache busting_.
102
+ When a filename is unique and based on its content, HTTP headers can be set to
103
+ encourage caches everywhere (whether at CDNs, at ISPs, in networking equipment,
104
+ or in web browsers) to keep their own copy of the content. When the content is
105
+ updated, the fingerprint will change. This will cause the remote clients to
106
+ request a new copy of the content. This is generally known as _cache busting_.
55
107
 
56
- The technique that Rails uses for fingerprinting is to insert a hash of the content into the name, usually at the end. For example a CSS file `global.css` could be renamed with an MD5 digest of its contents:
108
+ The technique sprockets uses for fingerprinting is to insert a hash of the
109
+ content into the name, usually at the end. For example a CSS file `global.css`
57
110
 
58
111
  ```
59
112
  global-908e25f4bf641868d8683022a5b62f54.css
@@ -61,7 +114,8 @@ global-908e25f4bf641868d8683022a5b62f54.css
61
114
 
62
115
  This is the strategy adopted by the Rails asset pipeline.
63
116
 
64
- Rails' old strategy was to append a date-based query string to every asset linked with a built-in helper. In the source the generated code looked like this:
117
+ Rails' old strategy was to append a date-based query string to every asset linked
118
+ with a built-in helper. In the source the generated code looked like this:
65
119
 
66
120
  ```
67
121
  /stylesheets/global.css?1309495796
@@ -69,17 +123,30 @@ Rails' old strategy was to append a date-based query string to every asset linke
69
123
 
70
124
  The query string strategy has several disadvantages:
71
125
 
72
- 1. **Not all caches will reliably cache content where the filename only differs by query parameters**<br />
73
- [Steve Souders recommends](http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/), "...avoiding a querystring for cacheable resources". He found that in this case 5-20% of requests will not be cached. Query strings in particular do not work at all with some CDNs for cache invalidation.
126
+ 1. **Not all caches will reliably cache content where the filename only differs by
127
+ query parameters**<br>
128
+ [Steve Souders recommends](http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/),
129
+ "...avoiding a querystring for cacheable resources". He found that in this
130
+ case 5-20% of requests will not be cached. Query strings in particular do not
131
+ work at all with some CDNs for cache invalidation.
132
+
133
+ 2. **The file name can change between nodes in multi-server environments.**<br>
134
+ The default query string in Rails 2.x is based on the modification time of
135
+ the files. When assets are deployed to a cluster, there is no guarantee that the
136
+ timestamps will be the same, resulting in different values being used depending
137
+ on which server handles the request.
74
138
 
75
- 2. **The file name can change between nodes in multi-server environments.**<br />
76
- The default query string in Rails 2.x is based on the modification time of the files. When assets are deployed to a cluster, there is no guarantee that the timestamps will be the same, resulting in different values being used depending on which server handles the request.
77
- 3. **Too much cache invalidation**<br />
78
- When static assets are deployed with each new release of code, the mtime(time of last modification) of _all_ these files changes, forcing all remote clients to fetch them again, even when the content of those assets has not changed.
139
+ 3. **Too much cache invalidation**<br>
140
+ When static assets are deployed with each new release of code, the mtime
141
+ (time of last modification) of _all_ these files changes, forcing all remote
142
+ clients to fetch them again, even when the content of those assets has not changed.
79
143
 
80
- Fingerprinting fixes these problems by avoiding query strings, and by ensuring that filenames are consistent based on their content.
144
+ Fingerprinting fixes these problems by avoiding query strings, and by ensuring
145
+ that filenames are consistent based on their content.
81
146
 
82
- Fingerprinting is enabled by default for production and disabled for all other environments. You can enable or disable it in your configuration through the `config.assets.digest` option.
147
+ Fingerprinting is enabled by default for production and disabled for all other
148
+ environments. You can enable or disable it in your configuration through the
149
+ `config.assets.digest` option.
83
150
 
84
151
  More reading:
85
152
 
@@ -90,41 +157,82 @@ More reading:
90
157
  How to Use the Asset Pipeline
91
158
  -----------------------------
92
159
 
93
- In previous versions of Rails, all assets were located in subdirectories of `public` such as `images`, `javascripts` and `stylesheets`. With the asset pipeline, the preferred location for these assets is now the `app/assets` directory. Files in this directory are served by the Sprockets middleware included in the sprockets gem.
160
+ In previous versions of Rails, all assets were located in subdirectories of
161
+ `public` such as `images`, `javascripts` and `stylesheets`. With the asset
162
+ pipeline, the preferred location for these assets is now the `app/assets`
163
+ directory. Files in this directory are served by the Sprockets middleware.
94
164
 
95
- Assets can still be placed in the `public` hierarchy. Any assets under `public` will be served as static files by the application or web server. You should use `app/assets` for files that must undergo some pre-processing before they are served.
165
+ Assets can still be placed in the `public` hierarchy. Any assets under `public`
166
+ will be served as static files by the application or web server. You should use
167
+ `app/assets` for files that must undergo some pre-processing before they are
168
+ served.
96
169
 
97
- In production, Rails precompiles these files to `public/assets` by default. The precompiled copies are then served as static assets by the web server. The files in `app/assets` are never served directly in production.
170
+ In production, Rails precompiles these files to `public/assets` by default. The
171
+ precompiled copies are then served as static assets by the web server. The files
172
+ in `app/assets` are never served directly in production.
98
173
 
99
174
  ### Controller Specific Assets
100
175
 
101
- When you generate a scaffold or a controller, Rails also generates a JavaScript file (or CoffeeScript file if the `coffee-rails` gem is in the `Gemfile`) and a Cascading Style Sheet file (or SCSS file if `sass-rails` is in the `Gemfile`) for that controller.
102
-
103
- For example, if you generate a `ProjectsController`, Rails will also add a new file at `app/assets/javascripts/projects.js.coffee` and another at `app/assets/stylesheets/projects.css.scss`. By default these files will be ready to use by your application immediately using the `require_tree` directive. See [Manifest Files and Directives](#manifest-files-and-directives) for more details on require_tree.
104
-
105
- You can also opt to include controller specific stylesheets and JavaScript files only in their respective controllers using the following: `<%= javascript_include_tag params[:controller] %>` or `<%= stylesheet_link_tag params[:controller] %>`. Ensure that you are not using the `require_tree` directive though, as this will result in your assets being included more than once.
106
-
107
- WARNING: When using asset precompilation (the production default), you will need to ensure that your controller assets will be precompiled when loading them on a per page basis. By default .coffee and .scss files will not be precompiled on their own. This will result in false positives during development as these files will work just fine since assets will be compiled on the fly. When running in production however, you will see 500 errors since live compilation is turned off by default. See [Precompiling Assets](#precompiling-assets) for more information on how precompiling works.
108
-
109
- NOTE: You must have an ExecJS supported runtime in order to use CoffeeScript. If you are using Mac OS X or Windows you have a JavaScript runtime installed in your operating system. Check [ExecJS](https://github.com/sstephenson/execjs#readme) documentation to know all supported JavaScript runtimes.
110
-
111
- You can also disable the generation of asset files when generating a controller by adding the following to your `config/application.rb` configuration:
176
+ When you generate a scaffold or a controller, Rails also generates a JavaScript
177
+ file (or CoffeeScript file if the `coffee-rails` gem is in the `Gemfile`) and a
178
+ Cascading Style Sheet file (or SCSS file if `sass-rails` is in the `Gemfile`)
179
+ for that controller. Additionally, when generating a scaffold, Rails generates
180
+ the file scaffolds.css (or scaffolds.css.scss if `sass-rails` is in the
181
+ `Gemfile`.)
182
+
183
+ For example, if you generate a `ProjectsController`, Rails will also add a new
184
+ file at `app/assets/javascripts/projects.js.coffee` and another at
185
+ `app/assets/stylesheets/projects.css.scss`. By default these files will be ready
186
+ to use by your application immediately using the `require_tree` directive. See
187
+ [Manifest Files and Directives](#manifest-files-and-directives) for more details
188
+ on require_tree.
189
+
190
+ You can also opt to include controller specific stylesheets and JavaScript files
191
+ only in their respective controllers using the following:
192
+
193
+ `<%= javascript_include_tag params[:controller] %>` or `<%= stylesheet_link_tag
194
+ params[:controller] %>`
195
+
196
+ When doing this, ensure you are not using the `require_tree` directive, as that
197
+ will result in your assets being included more than once.
198
+
199
+ WARNING: When using asset precompilation, you will need to ensure that your
200
+ controller assets will be precompiled when loading them on a per page basis. By
201
+ default .coffee and .scss files will not be precompiled on their own. This will
202
+ result in false positives during development as these files will work just fine
203
+ since assets are compiled on the fly in development mode. When running in
204
+ production, however, you will see 500 errors since live compilation is turned
205
+ off by default. See [Precompiling Assets](#precompiling-assets) for more
206
+ information on how precompiling works.
207
+
208
+ NOTE: You must have an ExecJS supported runtime in order to use CoffeeScript.
209
+ If you are using Mac OS X or Windows, you have a JavaScript runtime installed in
210
+ your operating system. Check
211
+ [ExecJS](https://github.com/rails/execjs#readme) documentation to know all
212
+ supported JavaScript runtimes.
213
+
214
+ You can also disable generation of controller specific asset files by adding the
215
+ following to your `config/application.rb` configuration:
112
216
 
113
217
  ```ruby
114
- config.generators do |g|
115
- g.assets false
116
- end
218
+ config.generators do |g|
219
+ g.assets false
220
+ end
117
221
  ```
118
222
 
119
223
  ### Asset Organization
120
224
 
121
- Pipeline assets can be placed inside an application in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`.
225
+ Pipeline assets can be placed inside an application in one of three locations:
226
+ `app/assets`, `lib/assets` or `vendor/assets`.
122
227
 
123
- * `app/assets` is for assets that are owned by the application, such as custom images, JavaScript files or stylesheets.
228
+ * `app/assets` is for assets that are owned by the application, such as custom
229
+ images, JavaScript files or stylesheets.
124
230
 
125
- * `lib/assets` is for your own libraries' code that doesn't really fit into the scope of the application or those libraries which are shared across applications.
231
+ * `lib/assets` is for your own libraries' code that doesn't really fit into the
232
+ scope of the application or those libraries which are shared across applications.
126
233
 
127
- * `vendor/assets` is for assets that are owned by outside entities, such as code for JavaScript plugins and CSS frameworks.
234
+ * `vendor/assets` is for assets that are owned by outside entities, such as
235
+ code for JavaScript plugins and CSS frameworks.
128
236
 
129
237
  WARNING: If you are upgrading from Rails 3, please take into account that assets
130
238
  under `lib/assets` or `vendor/assets` are available for inclusion via the
@@ -133,9 +241,12 @@ application manifests but no longer part of the precompile array. See
133
241
 
134
242
  #### Search Paths
135
243
 
136
- When a file is referenced from a manifest or a helper, Sprockets searches the three default asset locations for it.
244
+ When a file is referenced from a manifest or a helper, Sprockets searches the
245
+ three default asset locations for it.
137
246
 
138
- The default locations are: `app/assets/images` and the subdirectories `javascripts` and `stylesheets` in all three asset locations, but these subdirectories are not special. Any path under `assets/*` will be searched.
247
+ The default locations are: the `images`, `javascripts` and `stylesheets`
248
+ directories under the `app/assets` folder, but these subdirectories
249
+ are not special - any path under `assets/*` will be searched.
139
250
 
140
251
  For example, these files:
141
252
 
@@ -167,72 +278,113 @@ is referenced as:
167
278
  //= require sub/something
168
279
  ```
169
280
 
170
- You can view the search path by inspecting `Rails.application.config.assets.paths` in the Rails console.
281
+ You can view the search path by inspecting
282
+ `Rails.application.config.assets.paths` in the Rails console.
171
283
 
172
- Besides the standard `assets/*` paths, additional (fully qualified) paths can be added to the pipeline in `config/application.rb`. For example:
284
+ Besides the standard `assets/*` paths, additional (fully qualified) paths can be
285
+ added to the pipeline in `config/application.rb`. For example:
173
286
 
174
287
  ```ruby
175
288
  config.assets.paths << Rails.root.join("lib", "videoplayer", "flash")
176
289
  ```
177
290
 
178
- Paths are traversed in the order that they occur in the search path. By default, this means the files in `app/assets` take precedence, and will mask corresponding paths in `lib` and `vendor`.
291
+ Paths are traversed in the order they occur in the search path. By default,
292
+ this means the files in `app/assets` take precedence, and will mask
293
+ corresponding paths in `lib` and `vendor`.
179
294
 
180
- It is important to note that files you want to reference outside a manifest must be added to the precompile array or they will not be available in the production environment.
295
+ It is important to note that files you want to reference outside a manifest must
296
+ be added to the precompile array or they will not be available in the production
297
+ environment.
181
298
 
182
299
  #### Using Index Files
183
300
 
184
- Sprockets uses files named `index` (with the relevant extensions) for a special purpose.
301
+ Sprockets uses files named `index` (with the relevant extensions) for a special
302
+ purpose.
185
303
 
186
- For example, if you have a jQuery library with many modules, which is stored in `lib/assets/library_name`, the file `lib/assets/library_name/index.js` serves as the manifest for all files in this library. This file could include a list of all the required files in order, or a simple `require_tree` directive.
304
+ For example, if you have a jQuery library with many modules, which is stored in
305
+ `lib/assets/library_name`, the file `lib/assets/library_name/index.js` serves as
306
+ the manifest for all files in this library. This file could include a list of
307
+ all the required files in order, or a simple `require_tree` directive.
187
308
 
188
- The library as a whole can be accessed in the site's application manifest like so:
309
+ The library as a whole can be accessed in the application manifest like so:
189
310
 
190
311
  ```js
191
312
  //= require library_name
192
313
  ```
193
314
 
194
- This simplifies maintenance and keeps things clean by allowing related code to be grouped before inclusion elsewhere.
315
+ This simplifies maintenance and keeps things clean by allowing related code to
316
+ be grouped before inclusion elsewhere.
195
317
 
196
318
  ### Coding Links to Assets
197
319
 
198
- Sprockets does not add any new methods to access your assets - you still use the familiar `javascript_include_tag` and `stylesheet_link_tag`.
320
+ Sprockets does not add any new methods to access your assets - you still use the
321
+ familiar `javascript_include_tag` and `stylesheet_link_tag`:
199
322
 
200
323
  ```erb
201
- <%= stylesheet_link_tag "application" %>
324
+ <%= stylesheet_link_tag "application", media: "all" %>
202
325
  <%= javascript_include_tag "application" %>
203
326
  ```
204
327
 
205
- In regular views you can access images in the `assets/images` directory like this:
328
+ If using the turbolinks gem, which is included by default in Rails 4, then
329
+ include the 'data-turbolinks-track' option which causes turbolinks to check if
330
+ an asset has been updated and if so loads it into the page:
331
+
332
+ ```erb
333
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
334
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
335
+ ```
336
+
337
+ In regular views you can access images in the `public/assets/images` directory
338
+ like this:
206
339
 
207
340
  ```erb
208
341
  <%= image_tag "rails.png" %>
209
342
  ```
210
343
 
211
- Provided that the pipeline is enabled within your application (and not disabled in the current environment context), this file is served by Sprockets. If a file exists at `public/assets/rails.png` it is served by the web server.
344
+ Provided that the pipeline is enabled within your application (and not disabled
345
+ in the current environment context), this file is served by Sprockets. If a file
346
+ exists at `public/assets/rails.png` it is served by the web server.
212
347
 
213
- Alternatively, a request for a file with an MD5 hash such as `public/assets/rails-af27b6a414e6da00003503148be9b409.png` is treated the same way. How these hashes are generated is covered in the [In Production](#in-production) section later on in this guide.
348
+ Alternatively, a request for a file with an MD5 hash such as
349
+ `public/assets/rails-af27b6a414e6da00003503148be9b409.png` is treated the same
350
+ way. How these hashes are generated is covered in the [In
351
+ Production](#in-production) section later on in this guide.
214
352
 
215
- Sprockets will also look through the paths specified in `config.assets.paths` which includes the standard application paths and any path added by Rails engines.
353
+ Sprockets will also look through the paths specified in `config.assets.paths`,
354
+ which includes the standard application paths and any paths added by Rails
355
+ engines.
216
356
 
217
- Images can also be organized into subdirectories if required, and they can be accessed by specifying the directory's name in the tag:
357
+ Images can also be organized into subdirectories if required, and then can be
358
+ accessed by specifying the directory's name in the tag:
218
359
 
219
360
  ```erb
220
361
  <%= image_tag "icons/rails.png" %>
221
362
  ```
222
363
 
223
- WARNING: If you're precompiling your assets (see [In Production](#in-production) below), linking to an asset that does not exist will raise an exception in the calling page. This includes linking to a blank string. As such, be careful using `image_tag` and the other helpers with user-supplied data.
364
+ WARNING: If you're precompiling your assets (see [In Production](#in-production)
365
+ below), linking to an asset that does not exist will raise an exception in the
366
+ calling page. This includes linking to a blank string. As such, be careful using
367
+ `image_tag` and the other helpers with user-supplied data.
224
368
 
225
369
  #### CSS and ERB
226
370
 
227
- The asset pipeline automatically evaluates ERB. This means that if you add an `erb` extension to a CSS asset (for example, `application.css.erb`), then helpers like `asset_path` are available in your CSS rules:
371
+ The asset pipeline automatically evaluates ERB. This means if you add an
372
+ `erb` extension to a CSS asset (for example, `application.css.erb`), then
373
+ helpers like `asset_path` are available in your CSS rules:
228
374
 
229
375
  ```css
230
376
  .class { background-image: url(<%= asset_path 'image.png' %>) }
231
377
  ```
232
378
 
233
- This writes the path to the particular asset being referenced. In this example, it would make sense to have an image in one of the asset load paths, such as `app/assets/images/image.png`, which would be referenced here. If this image is already available in `public/assets` as a fingerprinted file, then that path is referenced.
379
+ This writes the path to the particular asset being referenced. In this example,
380
+ it would make sense to have an image in one of the asset load paths, such as
381
+ `app/assets/images/image.png`, which would be referenced here. If this image is
382
+ already available in `public/assets` as a fingerprinted file, then that path is
383
+ referenced.
234
384
 
235
- If you want to use a [data URI](http://en.wikipedia.org/wiki/Data_URI_scheme) — a method of embedding the image data directly into the CSS file — you can use the `asset_data_uri` helper.
385
+ If you want to use a [data URI](http://en.wikipedia.org/wiki/Data_URI_scheme) -
386
+ a method of embedding the image data directly into the CSS file - you can use
387
+ the `asset_data_uri` helper.
236
388
 
237
389
  ```css
238
390
  #logo { background: url(<%= asset_data_uri 'logo.png' %>) }
@@ -244,7 +396,10 @@ Note that the closing tag cannot be of the style `-%>`.
244
396
 
245
397
  #### CSS and Sass
246
398
 
247
- When using the asset pipeline, paths to assets must be re-written and `sass-rails` provides `-url` and `-path` helpers (hyphenated in Sass, underscored in Ruby) for the following asset classes: image, font, video, audio, JavaScript and stylesheet.
399
+ When using the asset pipeline, paths to assets must be re-written and
400
+ `sass-rails` provides `-url` and `-path` helpers (hyphenated in Sass,
401
+ underscored in Ruby) for the following asset classes: image, font, video, audio,
402
+ JavaScript and stylesheet.
248
403
 
249
404
  * `image-url("rails.png")` becomes `url(/assets/rails.png)`
250
405
  * `image-path("rails.png")` becomes `"/assets/rails.png"`.
@@ -256,17 +411,18 @@ The more generic form can also be used:
256
411
 
257
412
  #### JavaScript/CoffeeScript and ERB
258
413
 
259
- If you add an `erb` extension to a JavaScript asset, making it something such as `application.js.erb`, then you can use the `asset_path` helper in your JavaScript code:
414
+ If you add an `erb` extension to a JavaScript asset, making it something such as
415
+ `application.js.erb`, you can then use the `asset_path` helper in your
416
+ JavaScript code:
260
417
 
261
418
  ```js
262
- $('#logo').attr({
263
- src: "<%= asset_path('logo.png') %>"
264
- });
419
+ $('#logo').attr({ src: "<%= asset_path('logo.png') %>" });
265
420
  ```
266
421
 
267
422
  This writes the path to the particular asset being referenced.
268
423
 
269
- Similarly, you can use the `asset_path` helper in CoffeeScript files with `erb` extension (e.g., `application.js.coffee.erb`):
424
+ Similarly, you can use the `asset_path` helper in CoffeeScript files with `erb`
425
+ extension (e.g., `application.js.coffee.erb`):
270
426
 
271
427
  ```js
272
428
  $('#logo').attr src: "<%= asset_path('logo.png') %>"
@@ -274,10 +430,19 @@ $('#logo').attr src: "<%= asset_path('logo.png') %>"
274
430
 
275
431
  ### Manifest Files and Directives
276
432
 
277
- Sprockets uses manifest files to determine which assets to include and serve. These manifest files contain _directives_ — instructions that tell Sprockets which files to require in order to build a single CSS or JavaScript file. With these directives, Sprockets loads the files specified, processes them if necessary, concatenates them into one single file and then compresses them (if `Rails.application.config.assets.compress` is true). By serving one file rather than many, the load time of pages can be greatly reduced because the browser makes fewer requests. Compression also reduces the file size enabling the browser to download it faster.
433
+ Sprockets uses manifest files to determine which assets to include and serve.
434
+ These manifest files contain _directives_ - instructions that tell Sprockets
435
+ which files to require in order to build a single CSS or JavaScript file. With
436
+ these directives, Sprockets loads the files specified, processes them if
437
+ necessary, concatenates them into one single file and then compresses them (if
438
+ `Rails.application.config.assets.compress` is true). By serving one file rather
439
+ than many, the load time of pages can be greatly reduced because the browser
440
+ makes fewer requests. Compression also reduces file size, enabling the
441
+ browser to download them faster.
278
442
 
279
443
 
280
- For example, a new Rails application includes a default `app/assets/javascripts/application.js` file which contains the following lines:
444
+ For example, a new Rails 4 application includes a default
445
+ `app/assets/javascripts/application.js` file containing the following lines:
281
446
 
282
447
  ```js
283
448
  // ...
@@ -286,30 +451,64 @@ For example, a new Rails application includes a default `app/assets/javascripts/
286
451
  //= require_tree .
287
452
  ```
288
453
 
289
- In JavaScript files, the directives begin with `//=`. In this case, the file is using the `require` and the `require_tree` directives. The `require` directive is used to tell Sprockets the files that you wish to require. Here, you are requiring the files `jquery.js` and `jquery_ujs.js` that are available somewhere in the search path for Sprockets. You need not supply the extensions explicitly. Sprockets assumes you are requiring a `.js` file when done from within a `.js` file.
290
-
291
- The `require_tree` directive tells Sprockets to recursively include _all_ JavaScript files in the specified directory into the output. These paths must be specified relative to the manifest file. You can also use the `require_directory` directive which includes all JavaScript files only in the directory specified, without recursion.
292
-
293
- Directives are processed top to bottom, but the order in which files are included by `require_tree` is unspecified. You should not rely on any particular order among those. If you need to ensure some particular JavaScript ends up above some other in the concatenated file, require the prerequisite file first in the manifest. Note that the family of `require` directives prevents files from being included twice in the output.
294
-
295
- Rails also creates a default `app/assets/stylesheets/application.css` file which contains these lines:
454
+ In JavaScript files, Sprockets directives begin with `//=`. In the above case,
455
+ the file is using the `require` and the `require_tree` directives. The `require`
456
+ directive is used to tell Sprockets the files you wish to require. Here, you are
457
+ requiring the files `jquery.js` and `jquery_ujs.js` that are available somewhere
458
+ in the search path for Sprockets. You need not supply the extensions explicitly.
459
+ Sprockets assumes you are requiring a `.js` file when done from within a `.js`
460
+ file.
461
+
462
+ The `require_tree` directive tells Sprockets to recursively include _all_
463
+ JavaScript files in the specified directory into the output. These paths must be
464
+ specified relative to the manifest file. You can also use the
465
+ `require_directory` directive which includes all JavaScript files only in the
466
+ directory specified, without recursion.
467
+
468
+ Directives are processed top to bottom, but the order in which files are
469
+ included by `require_tree` is unspecified. You should not rely on any particular
470
+ order among those. If you need to ensure some particular JavaScript ends up
471
+ above some other in the concatenated file, require the prerequisite file first
472
+ in the manifest. Note that the family of `require` directives prevents files
473
+ from being included twice in the output.
474
+
475
+ Rails also creates a default `app/assets/stylesheets/application.css` file
476
+ which contains these lines:
296
477
 
297
- ```js
478
+ ```css
298
479
  /* ...
299
480
  *= require_self
300
481
  *= require_tree .
301
482
  */
302
483
  ```
303
484
 
304
- The directives that work in the JavaScript files also work in stylesheets (though obviously including stylesheets rather than JavaScript files). The `require_tree` directive in a CSS manifest works the same way as the JavaScript one, requiring all stylesheets from the current directory.
485
+ Rails 4 creates both `app/assets/javascripts/application.js` and
486
+ `app/assets/stylesheets/application.css` regardless of whether the
487
+ --skip-sprockets option is used when creating a new rails application. This is
488
+ so you can easily add asset pipelining later if you like.
489
+
490
+ The directives that work in JavaScript files also work in stylesheets
491
+ (though obviously including stylesheets rather than JavaScript files). The
492
+ `require_tree` directive in a CSS manifest works the same way as the JavaScript
493
+ one, requiring all stylesheets from the current directory.
305
494
 
306
- In this example `require_self` is used. This puts the CSS contained within the file (if any) at the precise location of the `require_self` call. If `require_self` is called more than once, only the last call is respected.
495
+ In this example, `require_self` is used. This puts the CSS contained within the
496
+ file (if any) at the precise location of the `require_self` call. If
497
+ `require_self` is called more than once, only the last call is respected.
307
498
 
308
- NOTE. If you want to use multiple Sass files, you should generally use the [Sass `@import` rule](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#import) instead of these Sprockets directives. Using Sprockets directives all Sass files exist within their own scope, making variables or mixins only available within the document they were defined in.
499
+ NOTE. If you want to use multiple Sass files, you should generally use the [Sass `@import` rule](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#import)
500
+ instead of these Sprockets directives. Using Sprockets directives all Sass files exist within
501
+ their own scope, making variables or mixins only available within the document they were defined in.
502
+ You can do file globbing as well using `@import "*"`, and `@import "**/*"` to add the whole tree
503
+ equivalent to how `require_tree` works. Check the [sass-rails documentation](https://github.com/rails/sass-rails#features) for more info and important caveats.
309
504
 
310
- You can have as many manifest files as you need. For example the `admin.css` and `admin.js` manifest could contain the JS and CSS files that are used for the admin section of an application.
505
+ You can have as many manifest files as you need. For example, the `admin.css`
506
+ and `admin.js` manifest could contain the JS and CSS files that are used for the
507
+ admin section of an application.
311
508
 
312
- The same remarks about ordering made above apply. In particular, you can specify individual files and they are compiled in the order specified. For example, you might concatenate three CSS files together this way:
509
+ The same remarks about ordering made above apply. In particular, you can specify
510
+ individual files and they are compiled in the order specified. For example, you
511
+ might concatenate three CSS files together this way:
313
512
 
314
513
  ```js
315
514
  /* ...
@@ -319,21 +518,41 @@ The same remarks about ordering made above apply. In particular, you can specify
319
518
  */
320
519
  ```
321
520
 
322
-
323
521
  ### Preprocessing
324
522
 
325
- The file extensions used on an asset determine what preprocessing is applied. When a controller or a scaffold is generated with the default Rails gemset, a CoffeeScript file and a SCSS file are generated in place of a regular JavaScript and CSS file. The example used before was a controller called "projects", which generated an `app/assets/javascripts/projects.js.coffee` and an `app/assets/stylesheets/projects.css.scss` file.
326
-
327
- When these files are requested, they are processed by the processors provided by the `coffee-script` and `sass` gems and then sent back to the browser as JavaScript and CSS respectively.
523
+ The file extensions used on an asset determine what preprocessing is applied.
524
+ When a controller or a scaffold is generated with the default Rails gemset, a
525
+ CoffeeScript file and a SCSS file are generated in place of a regular JavaScript
526
+ and CSS file. The example used before was a controller called "projects", which
527
+ generated an `app/assets/javascripts/projects.js.coffee` and an
528
+ `app/assets/stylesheets/projects.css.scss` file.
529
+
530
+ In development mode, or if the asset pipeline is disabled, when these files are
531
+ requested they are processed by the processors provided by the `coffee-script`
532
+ and `sass` gems and then sent back to the browser as JavaScript and CSS
533
+ respectively. When asset pipelining is enabled, these files are preprocessed and
534
+ placed in the `public/assets` directory for serving by either the Rails app or
535
+ web server.
536
+
537
+ Additional layers of preprocessing can be requested by adding other extensions,
538
+ where each extension is processed in a right-to-left manner. These should be
539
+ used in the order the processing should be applied. For example, a stylesheet
540
+ called `app/assets/stylesheets/projects.css.scss.erb` is first processed as ERB,
541
+ then SCSS, and finally served as CSS. The same applies to a JavaScript file -
542
+ `app/assets/javascripts/projects.js.coffee.erb` is processed as ERB, then
543
+ CoffeeScript, and served as JavaScript.
544
+
545
+ Keep in mind the order of these preprocessors is important. For example, if
546
+ you called your JavaScript file `app/assets/javascripts/projects.js.erb.coffee`
547
+ then it would be processed with the CoffeeScript interpreter first, which
548
+ wouldn't understand ERB and therefore you would run into problems.
328
549
 
329
- Additional layers of preprocessing can be requested by adding other extensions, where each extension is processed in a right-to-left manner. These should be used in the order the processing should be applied. For example, a stylesheet called `app/assets/stylesheets/projects.css.scss.erb` is first processed as ERB, then SCSS, and finally served as CSS. The same applies to a JavaScript file — `app/assets/javascripts/projects.js.coffee.erb` is processed as ERB, then CoffeeScript, and served as JavaScript.
330
-
331
- Keep in mind that the order of these preprocessors is important. For example, if you called your JavaScript file `app/assets/javascripts/projects.js.erb.coffee` then it would be processed with the CoffeeScript interpreter first, which wouldn't understand ERB and therefore you would run into problems.
332
550
 
333
551
  In Development
334
552
  --------------
335
553
 
336
- In development mode, assets are served as separate files in the order they are specified in the manifest file.
554
+ In development mode, assets are served as separate files in the order they are
555
+ specified in the manifest file.
337
556
 
338
557
  This manifest `app/assets/javascripts/application.js`:
339
558
 
@@ -353,41 +572,81 @@ would generate this HTML:
353
572
 
354
573
  The `body` param is required by Sprockets.
355
574
 
575
+ ### Runtime Error Checking
576
+
577
+ By default the asset pipeline will check for potential errors in development mode during
578
+ runtime. To disable this behavior you can set:
579
+
580
+ ```ruby
581
+ config.assets.raise_runtime_errors = false
582
+ ```
583
+
584
+ When `raise_runtime_errors` is set to `false` sprockets will not check that dependencies of assets are declared properly. Here is a scenario where you must tell the asset pipeline about a dependency:
585
+
586
+ If you have `application.css.erb` that references `logo.png` like this:
587
+
588
+ ```css
589
+ #logo { background: url(<%= asset_data_uri 'logo.png' %>) }
590
+ ```
591
+
592
+ Then you must declare that `logo.png` is a dependency of `application.css.erb`, so when the image gets re-compiled, the css file does as well. You can do this using the `//= depend_on_asset` declaration:
593
+
594
+ ```css
595
+ //= depend_on_asset "logo.png"
596
+ #logo { background: url(<%= asset_data_uri 'logo.png' %>) }
597
+ ```
598
+
599
+ Without this declaration you may experience strange behavior when pushing to production that is difficult to debug. When you have `raise_runtime_errors` set to `true`, dependencies will be checked at runtime so you can ensure that all dependencies are met.
600
+
601
+
356
602
  ### Turning Debugging Off
357
603
 
358
- You can turn off debug mode by updating `config/environments/development.rb` to include:
604
+ You can turn off debug mode by updating `config/environments/development.rb` to
605
+ include:
359
606
 
360
607
  ```ruby
361
608
  config.assets.debug = false
362
609
  ```
363
610
 
364
- When debug mode is off, Sprockets concatenates and runs the necessary preprocessors on all files. With debug mode turned off the manifest above would generate instead:
611
+ When debug mode is off, Sprockets concatenates and runs the necessary
612
+ preprocessors on all files. With debug mode turned off the manifest above would
613
+ generate instead:
365
614
 
366
615
  ```html
367
616
  <script src="/assets/application.js"></script>
368
617
  ```
369
618
 
370
- Assets are compiled and cached on the first request after the server is started. Sprockets sets a `must-revalidate` Cache-Control HTTP header to reduce request overhead on subsequent requests — on these the browser gets a 304 (Not Modified) response.
619
+ Assets are compiled and cached on the first request after the server is started.
620
+ Sprockets sets a `must-revalidate` Cache-Control HTTP header to reduce request
621
+ overhead on subsequent requests - on these the browser gets a 304 (Not Modified)
622
+ response.
371
623
 
372
- If any of the files in the manifest have changed between requests, the server responds with a new compiled file.
624
+ If any of the files in the manifest have changed between requests, the server
625
+ responds with a new compiled file.
373
626
 
374
- Debug mode can also be enabled in the Rails helper methods:
627
+ Debug mode can also be enabled in Rails helper methods:
375
628
 
376
629
  ```erb
377
630
  <%= stylesheet_link_tag "application", debug: true %>
378
631
  <%= javascript_include_tag "application", debug: true %>
379
632
  ```
380
633
 
381
- The `:debug` option is redundant if debug mode is on.
634
+ The `:debug` option is redundant if debug mode is already on.
382
635
 
383
- You could potentially also enable compression in development mode as a sanity check, and disable it on-demand as required for debugging.
636
+ You can also enable compression in development mode as a sanity check, and
637
+ disable it on-demand as required for debugging.
384
638
 
385
639
  In Production
386
640
  -------------
387
641
 
388
- In the production environment Rails uses the fingerprinting scheme outlined above. By default Rails assumes that assets have been precompiled and will be served as static assets by your web server.
642
+ In the production environment Sprockets uses the fingerprinting scheme outlined
643
+ above. By default Rails assumes assets have been precompiled and will be
644
+ served as static assets by your web server.
389
645
 
390
- During the precompilation phase an MD5 is generated from the contents of the compiled files, and inserted into the filenames as they are written to disc. These fingerprinted names are used by the Rails helpers in place of the manifest name.
646
+ During the precompilation phase an MD5 is generated from the contents of the
647
+ compiled files, and inserted into the filenames as they are written to disc.
648
+ These fingerprinted names are used by the Rails helpers in place of the manifest
649
+ name.
391
650
 
392
651
  For example this:
393
652
 
@@ -400,50 +659,55 @@ generates something like this:
400
659
 
401
660
  ```html
402
661
  <script src="/assets/application-908e25f4bf641868d8683022a5b62f54.js"></script>
403
- <link href="/assets/application-4dd5b109ee3439da54f5bdfd78a80473.css" media="screen" rel="stylesheet" />
662
+ <link href="/assets/application-4dd5b109ee3439da54f5bdfd78a80473.css" media="screen"
663
+ rel="stylesheet" />
404
664
  ```
405
665
 
406
- Note: with the Asset Pipeline the :cache and :concat options aren't used anymore, delete these options from the `javascript_include_tag` and `stylesheet_link_tag`.
407
-
666
+ Note: with the Asset Pipeline the :cache and :concat options aren't used
667
+ anymore, delete these options from the `javascript_include_tag` and
668
+ `stylesheet_link_tag`.
408
669
 
409
- The fingerprinting behavior is controlled by the setting of `config.assets.digest` setting in Rails (which defaults to `true` for production and `false` for everything else).
670
+ The fingerprinting behavior is controlled by the `config.assets.digest`
671
+ initialization option (which defaults to `true` for production and `false` for
672
+ everything else).
410
673
 
411
- NOTE: Under normal circumstances the default option should not be changed. If there are no digests in the filenames, and far-future headers are set, remote clients will never know to refetch the files when their content changes.
674
+ NOTE: Under normal circumstances the default `config.assets.digest` option
675
+ should not be changed. If there are no digests in the filenames, and far-future
676
+ headers are set, remote clients will never know to refetch the files when their
677
+ content changes.
412
678
 
413
679
  ### Precompiling Assets
414
680
 
415
- Rails comes bundled with a rake task to compile the asset manifests and other files in the pipeline to the disk.
681
+ Rails comes bundled with a rake task to compile the asset manifests and other
682
+ files in the pipeline.
416
683
 
417
- Compiled assets are written to the location specified in `config.assets.prefix`. By default, this is the `public/assets` directory.
684
+ Compiled assets are written to the location specified in `config.assets.prefix`.
685
+ By default, this is the `/assets` directory.
418
686
 
419
- You can call this task on the server during deployment to create compiled versions of your assets directly on the server. See the next section for information on compiling locally.
687
+ You can call this task on the server during deployment to create compiled
688
+ versions of your assets directly on the server. See the next section for
689
+ information on compiling locally.
420
690
 
421
691
  The rake task is:
422
692
 
423
693
  ```bash
424
- $ RAILS_ENV=production bundle exec rake assets:precompile
694
+ $ RAILS_ENV=production bin/rake assets:precompile
425
695
  ```
426
696
 
427
- For faster asset precompiles, you can partially load your application by setting
428
- `config.assets.initialize_on_precompile` to false in `config/application.rb`, though in that case templates
429
- cannot see application objects or methods. **Heroku requires this to be false.**
430
-
431
- WARNING: If you set `config.assets.initialize_on_precompile` to false, be sure to
432
- test `rake assets:precompile` locally before deploying. It may expose bugs where
433
- your assets reference application objects or methods, since those are still
434
- in scope in development mode regardless of the value of this flag. Changing this flag also affects
435
- engines. Engines can define assets for precompilation as well. Since the complete environment is not loaded,
436
- engines (or other gems) will not be loaded, which can cause missing assets.
437
-
438
- Capistrano (v2.8.0 and above) includes a recipe to handle this in deployment. Add the following line to `Capfile`:
697
+ Capistrano (v2.15.1 and above) includes a recipe to handle this in deployment.
698
+ Add the following line to `Capfile`:
439
699
 
440
700
  ```ruby
441
701
  load 'deploy/assets'
442
702
  ```
443
703
 
444
- This links the folder specified in `config.assets.prefix` to `shared/assets`. If you already use this shared folder you'll need to write your own deployment task.
704
+ This links the folder specified in `config.assets.prefix` to `shared/assets`.
705
+ If you already use this shared folder you'll need to write your own deployment
706
+ task.
445
707
 
446
- It is important that this folder is shared between deployments so that remotely cached pages that reference the old compiled assets still work for the life of the cached page.
708
+ It is important that this folder is shared between deployments so that remotely
709
+ cached pages referencing the old compiled assets still work for the life of
710
+ the cached page.
447
711
 
448
712
  The default matcher for compiling files includes `application.js`,
449
713
  `application.css` and all non-JS/CSS files (this will include all image assets
@@ -454,19 +718,23 @@ automatically) from `app/assets` folders including your gems:
454
718
  /application.(css|js)$/ ]
455
719
  ```
456
720
 
457
- NOTE. The matcher (and other members of the precompile array; see below) is applied to final compiled file names. This means that anything that compiles to JS/CSS is excluded, as well as raw JS/CSS files; for example, `.coffee` and `.scss` files are **not** automatically included as they compile to JS/CSS.
721
+ NOTE: The matcher (and other members of the precompile array; see below) is
722
+ applied to final compiled file names. This means anything that compiles to
723
+ JS/CSS is excluded, as well as raw JS/CSS files; for example, `.coffee` and
724
+ `.scss` files are **not** automatically included as they compile to JS/CSS.
458
725
 
459
- If you have other manifests or individual stylesheets and JavaScript files to include, you can add them to the `precompile` array in `config/application.rb`:
726
+ If you have other manifests or individual stylesheets and JavaScript files to
727
+ include, you can add them to the `precompile` array in `config/initializers/assets.rb`:
460
728
 
461
729
  ```ruby
462
- config.assets.precompile += ['admin.js', 'admin.css', 'swfObject.js']
730
+ Rails.application.config.assets.precompile += ['admin.js', 'admin.css', 'swfObject.js']
463
731
  ```
464
732
 
465
- Or you can opt to precompile all assets with something like this:
733
+ Or, you can opt to precompile all assets with something like this:
466
734
 
467
735
  ```ruby
468
- # config/application.rb
469
- config.assets.precompile << Proc.new do |path|
736
+ # config/initializers/assets.rb
737
+ Rails.application.config.assets.precompile << Proc.new do |path|
470
738
  if path =~ /\.(css|js)\z/
471
739
  full_path = Rails.application.assets.resolve(path).to_path
472
740
  app_assets_path = Rails.root.join('app', 'assets').to_path
@@ -483,31 +751,46 @@ config.assets.precompile << Proc.new do |path|
483
751
  end
484
752
  ```
485
753
 
486
- NOTE. Always specify an expected compiled filename that ends with js or css, even if you want to add Sass or CoffeeScript files to the precompile array.
754
+ NOTE. Always specify an expected compiled filename that ends with .js or .css,
755
+ even if you want to add Sass or CoffeeScript files to the precompile array.
487
756
 
488
- The rake task also generates a `manifest.yml` that contains a list with all your assets and their respective fingerprints. This is used by the Rails helper methods to avoid handing the mapping requests back to Sprockets. A typical manifest file looks like:
757
+ The rake task also generates a `manifest-md5hash.json` that contains a list with
758
+ all your assets and their respective fingerprints. This is used by the Rails
759
+ helper methods to avoid handing the mapping requests back to Sprockets. A
760
+ typical manifest file looks like:
489
761
 
490
- ```yaml
491
- ---
492
- rails.png: rails-bd9ad5a560b5a3a7be0808c5cd76a798.png
493
- jquery-ui.min.js: jquery-ui-7e33882a28fc84ad0e0e47e46cbf901c.min.js
494
- jquery.min.js: jquery-8a50feed8d29566738ad005e19fe1c2d.min.js
495
- application.js: application-3fdab497b8fb70d20cfc5495239dfc29.js
496
- application.css: application-8af74128f904600e41a6e39241464e03.css
762
+ ```ruby
763
+ {"files":{"application-723d1be6cc741a3aabb1cec24276d681.js":{"logical_path":"application.js","mtime":"2013-07-26T22:55:03-07:00","size":302506,
764
+ "digest":"723d1be6cc741a3aabb1cec24276d681"},"application-12b3c7dd74d2e9df37e7cbb1efa76a6d.css":{"logical_path":"application.css","mtime":"2013-07-26T22:54:54-07:00","size":1560,
765
+ "digest":"12b3c7dd74d2e9df37e7cbb1efa76a6d"},"application-1c5752789588ac18d7e1a50b1f0fd4c2.css":{"logical_path":"application.css","mtime":"2013-07-26T22:56:17-07:00","size":1591,
766
+ "digest":"1c5752789588ac18d7e1a50b1f0fd4c2"},"favicon-a9c641bf2b81f0476e876f7c5e375969.ico":{"logical_path":"favicon.ico","mtime":"2013-07-26T23:00:10-07:00","size":1406,
767
+ "digest":"a9c641bf2b81f0476e876f7c5e375969"},"my_image-231a680f23887d9dd70710ea5efd3c62.png":{"logical_path":"my_image.png","mtime":"2013-07-26T23:00:27-07:00","size":6646,
768
+ "digest":"231a680f23887d9dd70710ea5efd3c62"}},"assets":{"application.js":
769
+ "application-723d1be6cc741a3aabb1cec24276d681.js","application.css":
770
+ "application-1c5752789588ac18d7e1a50b1f0fd4c2.css",
771
+ "favicon.ico":"favicona9c641bf2b81f0476e876f7c5e375969.ico","my_image.png":
772
+ "my_image-231a680f23887d9dd70710ea5efd3c62.png"}}
497
773
  ```
498
774
 
499
- The default location for the manifest is the root of the location specified in `config.assets.prefix` ('/assets' by default).
775
+ The default location for the manifest is the root of the location specified in
776
+ `config.assets.prefix` ('/assets' by default).
500
777
 
501
- NOTE: If there are missing precompiled files in production you will get an `Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError` exception indicating the name of the missing file(s).
778
+ NOTE: If there are missing precompiled files in production you will get an
779
+ `Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError`
780
+ exception indicating the name of the missing file(s).
502
781
 
503
782
  #### Far-future Expires Header
504
783
 
505
- Precompiled assets exist on the filesystem and are served directly by your web server. They do not have far-future headers by default, so to get the benefit of fingerprinting you'll have to update your server configuration to add them.
784
+ Precompiled assets exist on the filesystem and are served directly by your web
785
+ server. They do not have far-future headers by default, so to get the benefit of
786
+ fingerprinting you'll have to update your server configuration to add those
787
+ headers.
506
788
 
507
789
  For Apache:
508
790
 
509
791
  ```apache
510
- # The Expires* directives requires the Apache module `mod_expires` to be enabled.
792
+ # The Expires* directives requires the Apache module
793
+ # `mod_expires` to be enabled.
511
794
  <Location /assets/>
512
795
  # Use of ETag is discouraged when Last-Modified is present
513
796
  Header unset ETag
@@ -532,7 +815,13 @@ location ~ ^/assets/ {
532
815
 
533
816
  #### GZip Compression
534
817
 
535
- When files are precompiled, Sprockets also creates a [gzipped](http://en.wikipedia.org/wiki/Gzip) (.gz) version of your assets. Web servers are typically configured to use a moderate compression ratio as a compromise, but since precompilation happens once, Sprockets uses the maximum compression ratio, thus reducing the size of the data transfer to the minimum. On the other hand, web servers can be configured to serve compressed content directly from disk, rather than deflating non-compressed files themselves.
818
+ When files are precompiled, Sprockets also creates a
819
+ [gzipped](http://en.wikipedia.org/wiki/Gzip) (.gz) version of your assets. Web
820
+ servers are typically configured to use a moderate compression ratio as a
821
+ compromise, but since precompilation happens once, Sprockets uses the maximum
822
+ compression ratio, thus reducing the size of the data transfer to the minimum.
823
+ On the other hand, web servers can be configured to serve compressed content
824
+ directly from disk, rather than deflating non-compressed files themselves.
536
825
 
537
826
  Nginx is able to do this automatically enabling `gzip_static`:
538
827
 
@@ -545,25 +834,32 @@ location ~ ^/(assets)/ {
545
834
  }
546
835
  ```
547
836
 
548
- This directive is available if the core module that provides this feature was compiled with the web server. Ubuntu packages, even `nginx-light` have the module compiled. Otherwise, you may need to perform a manual compilation:
837
+ This directive is available if the core module that provides this feature was
838
+ compiled with the web server. Ubuntu/Debian packages, even `nginx-light`, have
839
+ the module compiled. Otherwise, you may need to perform a manual compilation:
549
840
 
550
841
  ```bash
551
842
  ./configure --with-http_gzip_static_module
552
843
  ```
553
844
 
554
- If you're compiling nginx with Phusion Passenger you'll need to pass that option when prompted.
845
+ If you're compiling nginx with Phusion Passenger you'll need to pass that option
846
+ when prompted.
555
847
 
556
- A robust configuration for Apache is possible but tricky; please Google around. (Or help update this Guide if you have a good example configuration for Apache.)
848
+ A robust configuration for Apache is possible but tricky; please Google around.
849
+ (Or help update this Guide if you have a good configuration example for Apache.)
557
850
 
558
851
  ### Local Precompilation
559
852
 
560
- There are several reasons why you might want to precompile your assets locally. Among them are:
853
+ There are several reasons why you might want to precompile your assets locally.
854
+ Among them are:
561
855
 
562
856
  * You may not have write access to your production file system.
563
- * You may be deploying to more than one server, and want to avoid the duplication of work.
857
+ * You may be deploying to more than one server, and want to avoid
858
+ duplication of work.
564
859
  * You may be doing frequent deploys that do not include asset changes.
565
860
 
566
- Local compilation allows you to commit the compiled files into source control, and deploy as normal.
861
+ Local compilation allows you to commit the compiled files into source control,
862
+ and deploy as normal.
567
863
 
568
864
  There are two caveats:
569
865
 
@@ -576,23 +872,23 @@ In `config/environments/development.rb`, place the following line:
576
872
  config.assets.prefix = "/dev-assets"
577
873
  ```
578
874
 
579
- You will also need this in application.rb:
580
-
581
- ```ruby
582
- config.assets.initialize_on_precompile = false
583
- ```
584
-
585
- The `prefix` change makes Rails use a different URL for serving assets in development mode, and pass all requests to Sprockets. The prefix is still set to `/assets` in the production environment. Without this change, the application would serve the precompiled assets from `public/assets` in development, and you would not see any local changes until you compile assets again.
586
-
587
- The `initialize_on_precompile` change tells the precompile task to run without invoking Rails. This is because the precompile task runs in production mode by default, and will attempt to connect to your specified production database. Please note that you cannot have code in pipeline files that relies on Rails resources (such as the database) when compiling locally with this option.
875
+ The `prefix` change makes Sprockets use a different URL for serving assets in
876
+ development mode, and pass all requests to Sprockets. The prefix is still set to
877
+ `/assets` in the production environment. Without this change, the application
878
+ would serve the precompiled assets from `/assets` in development, and you would
879
+ not see any local changes until you compile assets again.
588
880
 
589
- You will also need to ensure that any compressors or minifiers are available on your development system.
881
+ You will also need to ensure any necessary compressors or minifiers are
882
+ available on your development system.
590
883
 
591
- In practice, this will allow you to precompile locally, have those files in your working tree, and commit those files to source control when needed. Development mode will work as expected.
884
+ In practice, this will allow you to precompile locally, have those files in your
885
+ working tree, and commit those files to source control when needed. Development
886
+ mode will work as expected.
592
887
 
593
888
  ### Live Compilation
594
889
 
595
- In some circumstances you may wish to use live compilation. In this mode all requests for assets in the pipeline are handled by Sprockets directly.
890
+ In some circumstances you may wish to use live compilation. In this mode all
891
+ requests for assets in the pipeline are handled by Sprockets directly.
596
892
 
597
893
  To enable this option set:
598
894
 
@@ -600,13 +896,21 @@ To enable this option set:
600
896
  config.assets.compile = true
601
897
  ```
602
898
 
603
- On the first request the assets are compiled and cached as outlined in development above, and the manifest names used in the helpers are altered to include the MD5 hash.
899
+ On the first request the assets are compiled and cached as outlined in
900
+ development above, and the manifest names used in the helpers are altered to
901
+ include the MD5 hash.
604
902
 
605
- Sprockets also sets the `Cache-Control` HTTP header to `max-age=31536000`. This signals all caches between your server and the client browser that this content (the file served) can be cached for 1 year. The effect of this is to reduce the number of requests for this asset from your server; the asset has a good chance of being in the local browser cache or some intermediate cache.
903
+ Sprockets also sets the `Cache-Control` HTTP header to `max-age=31536000`. This
904
+ signals all caches between your server and the client browser that this content
905
+ (the file served) can be cached for 1 year. The effect of this is to reduce the
906
+ number of requests for this asset from your server; the asset has a good chance
907
+ of being in the local browser cache or some intermediate cache.
606
908
 
607
- This mode uses more memory, performs more poorly than the default and is not recommended.
909
+ This mode uses more memory, performs more poorly than the default and is not
910
+ recommended.
608
911
 
609
- If you are deploying a production application to a system without any pre-existing JavaScript runtimes, you may want to add one to your Gemfile:
912
+ If you are deploying a production application to a system without any
913
+ pre-existing JavaScript runtimes, you may want to add one to your Gemfile:
610
914
 
611
915
  ```ruby
612
916
  group :production do
@@ -616,36 +920,48 @@ end
616
920
 
617
921
  ### CDNs
618
922
 
619
- If your assets are being served by a CDN, ensure they don't stick around in
620
- your cache forever. This can cause problems. If you use
923
+ If your assets are being served by a CDN, ensure they don't stick around in your
924
+ cache forever. This can cause problems. If you use
621
925
  `config.action_controller.perform_caching = true`, Rack::Cache will use
622
926
  `Rails.cache` to store assets. This can cause your cache to fill up quickly.
623
927
 
624
- Every cache is different, so evaluate how your CDN handles caching and make
625
- sure that it plays nicely with the pipeline. You may find quirks related to
626
- your specific set up, you may not. The defaults nginx uses, for example,
627
- should give you no problems when used as an HTTP cache.
928
+ Every cache is different, so evaluate how your CDN handles caching and make sure
929
+ that it plays nicely with the pipeline. You may find quirks related to your
930
+ specific set up, you may not. The defaults nginx uses, for example, should give
931
+ you no problems when used as an HTTP cache.
628
932
 
629
933
  Customizing the Pipeline
630
934
  ------------------------
631
935
 
632
936
  ### CSS Compression
633
937
 
634
- There is currently one option for compressing CSS, YUI. The [YUI CSS compressor](http://developer.yahoo.com/yui/compressor/css.html) provides minification.
938
+ One of the options for compressing CSS is YUI. The [YUI CSS
939
+ compressor](http://yui.github.io/yuicompressor/css.html) provides
940
+ minification.
635
941
 
636
- The following line enables YUI compression, and requires the `yui-compressor` gem.
942
+ The following line enables YUI compression, and requires the `yui-compressor`
943
+ gem.
637
944
 
638
945
  ```ruby
639
946
  config.assets.css_compressor = :yui
640
947
  ```
948
+ The other option for compressing CSS if you have the sass-rails gem installed is
641
949
 
642
- The `config.assets.compress` must be set to `true` to enable CSS compression.
950
+ ```ruby
951
+ config.assets.css_compressor = :sass
952
+ ```
643
953
 
644
954
  ### JavaScript Compression
645
955
 
646
- Possible options for JavaScript compression are `:closure`, `:uglifier` and `:yui`. These require the use of the `closure-compiler`, `uglifier` or `yui-compressor` gems, respectively.
956
+ Possible options for JavaScript compression are `:closure`, `:uglifier` and
957
+ `:yui`. These require the use of the `closure-compiler`, `uglifier` or
958
+ `yui-compressor` gems, respectively.
647
959
 
648
- The default Gemfile includes [uglifier](https://github.com/lautis/uglifier). This gem wraps [UglifierJS](https://github.com/mishoo/UglifyJS) (written for NodeJS) in Ruby. It compresses your code by removing white space. It also includes other optimizations such as changing your `if` and `else` statements to ternary operators where possible.
960
+ The default Gemfile includes [uglifier](https://github.com/lautis/uglifier).
961
+ This gem wraps [UglifyJS](https://github.com/mishoo/UglifyJS) (written for
962
+ NodeJS) in Ruby. It compresses your code by removing white space and comments,
963
+ shortening local variable names, and performing other micro-optimizations such
964
+ as changing `if` and `else` statements to ternary operators where possible.
649
965
 
650
966
  The following line invokes `uglifier` for JavaScript compression.
651
967
 
@@ -653,13 +969,21 @@ The following line invokes `uglifier` for JavaScript compression.
653
969
  config.assets.js_compressor = :uglifier
654
970
  ```
655
971
 
656
- Note that `config.assets.compress` must be set to `true` to enable JavaScript compression
972
+ NOTE: You will need an [ExecJS](https://github.com/rails/execjs#readme)
973
+ supported runtime in order to use `uglifier`. If you are using Mac OS X or
974
+ Windows you have a JavaScript runtime installed in your operating system.
657
975
 
658
- NOTE: You will need an [ExecJS](https://github.com/sstephenson/execjs#readme) supported runtime in order to use `uglifier`. If you are using Mac OS X or Windows you have a JavaScript runtime installed in your operating system. Check the [ExecJS](https://github.com/sstephenson/execjs#readme) documentation for information on all of the supported JavaScript runtimes.
976
+ NOTE: The `config.assets.compress` initialization option is no longer used in
977
+ Rails 4 to enable either CSS or JavaScript compression. Setting it will have no
978
+ effect on the application. Instead, setting `config.assets.css_compressor` and
979
+ `config.assets.js_compressor` will control compression of CSS and JavaScript
980
+ assets.
659
981
 
660
982
  ### Using Your Own Compressor
661
983
 
662
- The compressor config settings for CSS and JavaScript also take any object. This object must have a `compress` method that takes a string as the sole argument and it must return a string.
984
+ The compressor config settings for CSS and JavaScript also take any object.
985
+ This object must have a `compress` method that takes a string as the sole
986
+ argument and it must return a string.
663
987
 
664
988
  ```ruby
665
989
  class Transformer
@@ -686,31 +1010,49 @@ This can be changed to something else:
686
1010
  config.assets.prefix = "/some_other_path"
687
1011
  ```
688
1012
 
689
- This is a handy option if you are updating an older project that didn't use the asset pipeline and that already uses this path or you wish to use this path for a new resource.
1013
+ This is a handy option if you are updating an older project that didn't use the
1014
+ asset pipeline and already uses this path or you wish to use this path for
1015
+ a new resource.
690
1016
 
691
1017
  ### X-Sendfile Headers
692
1018
 
693
- The X-Sendfile header is a directive to the web server to ignore the response from the application, and instead serve a specified file from disk. This option is off by default, but can be enabled if your server supports it. When enabled, this passes responsibility for serving the file to the web server, which is faster.
1019
+ The X-Sendfile header is a directive to the web server to ignore the response
1020
+ from the application, and instead serve a specified file from disk. This option
1021
+ is off by default, but can be enabled if your server supports it. When enabled,
1022
+ this passes responsibility for serving the file to the web server, which is
1023
+ faster. Have a look at [send_file](http://api.rubyonrails.org/classes/ActionController/DataStreaming.html#method-i-send_file)
1024
+ on how to use this feature.
694
1025
 
695
- Apache and nginx support this option, which can be enabled in `config/environments/production.rb`.
1026
+ Apache and nginx support this option, which can be enabled in
1027
+ `config/environments/production.rb`:
696
1028
 
697
1029
  ```ruby
698
1030
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
699
1031
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
700
1032
  ```
701
1033
 
702
- WARNING: If you are upgrading an existing application and intend to use this option, take care to paste this configuration option only into `production.rb` and any other environments you define with production behavior (not `application.rb`).
1034
+ WARNING: If you are upgrading an existing application and intend to use this
1035
+ option, take care to paste this configuration option only into `production.rb`
1036
+ and any other environments you define with production behavior (not
1037
+ `application.rb`).
1038
+
1039
+ TIP: For further details have a look at the docs of your production web server:
1040
+ - [Apache](https://tn123.org/mod_xsendfile/)
1041
+ - [Nginx](http://wiki.nginx.org/XSendfile)
703
1042
 
704
1043
  Assets Cache Store
705
1044
  ------------------
706
1045
 
707
- The default Rails cache store will be used by Sprockets to cache assets in development and production. This can be changed by setting `config.assets.cache_store`.
1046
+ The default Rails cache store will be used by Sprockets to cache assets in
1047
+ development and production. This can be changed by setting
1048
+ `config.assets.cache_store`:
708
1049
 
709
1050
  ```ruby
710
1051
  config.assets.cache_store = :memory_store
711
1052
  ```
712
1053
 
713
- The options accepted by the assets cache store are the same as the application's cache store.
1054
+ The options accepted by the assets cache store are the same as the application's
1055
+ cache store.
714
1056
 
715
1057
  ```ruby
716
1058
  config.assets.cache_store = :memory_store, { size: 32.megabytes }
@@ -721,25 +1063,35 @@ Adding Assets to Your Gems
721
1063
 
722
1064
  Assets can also come from external sources in the form of gems.
723
1065
 
724
- A good example of this is the `jquery-rails` gem which comes with Rails as the standard JavaScript library gem. This gem contains an engine class which inherits from `Rails::Engine`. By doing this, Rails is informed that the directory for this gem may contain assets and the `app/assets`, `lib/assets` and `vendor/assets` directories of this engine are added to the search path of Sprockets.
1066
+ A good example of this is the `jquery-rails` gem which comes with Rails as the
1067
+ standard JavaScript library gem. This gem contains an engine class which
1068
+ inherits from `Rails::Engine`. By doing this, Rails is informed that the
1069
+ directory for this gem may contain assets and the `app/assets`, `lib/assets` and
1070
+ `vendor/assets` directories of this engine are added to the search path of
1071
+ Sprockets.
725
1072
 
726
1073
  Making Your Library or Gem a Pre-Processor
727
1074
  ------------------------------------------
728
1075
 
729
1076
  As Sprockets uses [Tilt](https://github.com/rtomayko/tilt) as a generic
730
- interface to different templating engines, your gem should just
731
- implement the Tilt template protocol. Normally, you would subclass
732
- `Tilt::Template` and reimplement `evaluate` method to return final
733
- output. Template source is stored at `@code`. Have a look at
1077
+ interface to different templating engines, your gem should just implement the
1078
+ Tilt template protocol. Normally, you would subclass `Tilt::Template` and
1079
+ reimplement the `prepare` method, which initializes your template, and the
1080
+ `evaluate` method, which returns the processed source. The original source is
1081
+ stored in `data`. Have a look at
734
1082
  [`Tilt::Template`](https://github.com/rtomayko/tilt/blob/master/lib/tilt/template.rb)
735
1083
  sources to learn more.
736
1084
 
737
1085
  ```ruby
738
1086
  module BangBang
739
1087
  class Template < ::Tilt::Template
1088
+ def prepare
1089
+ # Do any initialization here
1090
+ end
1091
+
740
1092
  # Adds a "!" to original template.
741
1093
  def evaluate(scope, locals, &block)
742
- "#{@code}!"
1094
+ "#{data}!"
743
1095
  end
744
1096
  end
745
1097
  end
@@ -755,31 +1107,30 @@ Sprockets.register_engine '.bang', BangBang::Template
755
1107
  Upgrading from Old Versions of Rails
756
1108
  ------------------------------------
757
1109
 
758
- There are a few issues when upgrading. The first is moving the files from `public/` to the new locations. See [Asset Organization](#asset-organization) above for guidance on the correct locations for different file types.
1110
+ There are a few issues when upgrading from Rails 3.0 or Rails 2.x. The first is
1111
+ moving the files from `public/` to the new locations. See [Asset
1112
+ Organization](#asset-organization) above for guidance on the correct locations
1113
+ for different file types.
759
1114
 
760
- Next will be avoiding duplicate JavaScript files. Since jQuery is the default JavaScript library from Rails 3.1 onwards, you don't need to copy `jquery.js` into `app/assets` and it will be included automatically.
1115
+ Next will be avoiding duplicate JavaScript files. Since jQuery is the default
1116
+ JavaScript library from Rails 3.1 onwards, you don't need to copy `jquery.js`
1117
+ into `app/assets` and it will be included automatically.
761
1118
 
762
- The third is updating the various environment files with the correct default options. The following changes reflect the defaults in version 3.1.0.
1119
+ The third is updating the various environment files with the correct default
1120
+ options.
763
1121
 
764
1122
  In `application.rb`:
765
1123
 
766
1124
  ```ruby
767
- # Enable the asset pipeline
768
- config.assets.enabled = true
769
-
770
1125
  # Version of your assets, change this if you want to expire all your assets
771
1126
  config.assets.version = '1.0'
772
1127
 
773
- # Change the path that assets are served from
774
- # config.assets.prefix = "/assets"
1128
+ # Change the path that assets are served from config.assets.prefix = "/assets"
775
1129
  ```
776
1130
 
777
1131
  In `development.rb`:
778
1132
 
779
1133
  ```ruby
780
- # Do not compress assets
781
- config.assets.compress = false
782
-
783
1134
  # Expands the lines which load the assets
784
1135
  config.assets.debug = true
785
1136
  ```
@@ -787,50 +1138,28 @@ config.assets.debug = true
787
1138
  And in `production.rb`:
788
1139
 
789
1140
  ```ruby
790
- # Compress JavaScripts and CSS
791
- config.assets.compress = true
792
-
793
- # Choose the compressors to use
794
- # config.assets.js_compressor = :uglifier
795
- # config.assets.css_compressor = :yui
1141
+ # Choose the compressors to use (if any) config.assets.js_compressor =
1142
+ # :uglifier config.assets.css_compressor = :yui
796
1143
 
797
1144
  # Don't fallback to assets pipeline if a precompiled asset is missed
798
1145
  config.assets.compile = false
799
1146
 
800
- # Generate digests for assets URLs.
1147
+ # Generate digests for assets URLs. This is planned for deprecation.
801
1148
  config.assets.digest = true
802
1149
 
803
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
804
- # config.assets.precompile += %w( search.js )
1150
+ # Precompile additional assets (application.js, application.css, and all
1151
+ # non-JS/CSS are already added) config.assets.precompile += %w( search.js )
805
1152
  ```
806
1153
 
807
- You should not need to change `test.rb`. The defaults in the test environment are: `config.assets.compile` is true and `config.assets.compress`, `config.assets.debug` and `config.assets.digest` are false.
1154
+ Rails 4 no longer sets default config values for Sprockets in `test.rb`, so
1155
+ `test.rb` now requires Sprockets configuration. The old defaults in the test
1156
+ environment are: `config.assets.compile = true`, `config.assets.compress =
1157
+ false`, `config.assets.debug = false` and `config.assets.digest = false`.
808
1158
 
809
1159
  The following should also be added to `Gemfile`:
810
1160
 
811
1161
  ```ruby
812
- # Gems used only for assets and not required
813
- # in production environments by default.
814
- group :assets do
815
- gem 'sass-rails', "~> 3.2.3"
816
- gem 'coffee-rails', "~> 3.2.1"
817
- gem 'uglifier'
818
- end
819
- ```
820
-
821
- If you use the `assets` group with Bundler, please make sure that your `config/application.rb` has the following Bundler require statement:
822
-
823
- ```ruby
824
- # If you precompile assets before deploying to production, use this line
825
- Bundler.require *Rails.groups(:assets => %w(development test))
826
- # If you want your assets lazily compiled in production, use this line
827
- # Bundler.require(:default, :assets, Rails.env)
828
- ```
829
-
830
- Instead of the generated version:
831
-
832
- ```ruby
833
- # Require the gems listed in Gemfile, including any gems
834
- # you've limited to :test, :development, or :production.
835
- Bundler.require(:default, Rails.env)
1162
+ gem 'sass-rails', "~> 3.2.3"
1163
+ gem 'coffee-rails', "~> 3.2.1"
1164
+ gem 'uglifier'
836
1165
  ```