aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/asset_pipeline.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-13 10:56:01 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-13 10:56:01 -0300
commit99d0c2ac67e9b6593e00f2144e57ad81afba5468 (patch)
tree88c8132124e0c34e182ace6ee8c806e7b5d246af /guides/source/asset_pipeline.md
parent5c83f51740201f1976c8bdcdecce46947bab6e0f (diff)
parent9655cb1ce7b475f0ba71cf878fadeabe243e6722 (diff)
downloadrails-99d0c2ac67e9b6593e00f2144e57ad81afba5468.tar.gz
rails-99d0c2ac67e9b6593e00f2144e57ad81afba5468.tar.bz2
rails-99d0c2ac67e9b6593e00f2144e57ad81afba5468.zip
Merge pull request #19315 from josh/update-sprockets-links
Update sprockets links to point to rails org
Diffstat (limited to 'guides/source/asset_pipeline.md')
-rw-r--r--guides/source/asset_pipeline.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md
index 6f8b4f4d15..da347ef344 100644
--- a/guides/source/asset_pipeline.md
+++ b/guides/source/asset_pipeline.md
@@ -149,7 +149,7 @@ clients to fetch them again, even when the content of those assets has not chang
Fingerprinting fixes these problems by avoiding query strings, and by ensuring
that filenames are consistent based on their content.
-Fingerprinting is enabled by default for both the development and production
+Fingerprinting is enabled by default for both the development and production
environments. You can enable or disable it in your configuration through the
`config.assets.digest` option.
@@ -209,7 +209,7 @@ precompiling works.
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.
+your operating system. Check [ExecJS](https://github.com/rails/execjs#readme) documentation to know all supported JavaScript runtimes.
You can also disable generation of controller specific asset files by adding the
following to your `config/application.rb` configuration:
@@ -1137,7 +1137,7 @@ The following line invokes `uglifier` for JavaScript compression.
config.assets.js_compressor = :uglifier
```
-NOTE: You will need an [ExecJS](https://github.com/sstephenson/execjs#readme)
+NOTE: You will need an [ExecJS](https://github.com/rails/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.