diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2017-10-13 08:59:20 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2017-10-13 08:59:20 +0900 |
commit | 0149481b1b29ac15197f1abe8a3961d8cb2926b6 (patch) | |
tree | 06194395d40e8ee47a744c8731a98cb5fbfc4e91 /guides | |
parent | 68a2888ef08faf38c0643921a8259beef5fbe630 (diff) | |
download | rails-0149481b1b29ac15197f1abe8a3961d8cb2926b6.tar.gz rails-0149481b1b29ac15197f1abe8a3961d8cb2926b6.tar.bz2 rails-0149481b1b29ac15197f1abe8a3961d8cb2926b6.zip |
Capitalize "sprockets" in Engine guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index 9f39832a7e..a9b841e3bf 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -1361,7 +1361,7 @@ that only exists for your engine. In this case, the host application doesn't need to require `admin.css` or `admin.js`. Only the gem's admin layout needs these assets. It doesn't make sense for the host app to include `"blorgh/admin.css"` in its stylesheets. In this situation, you should -explicitly define these assets for precompilation. This tells sprockets to add +explicitly define these assets for precompilation. This tells Sprockets to add your engine assets when `bin/rails assets:precompile` is triggered. You can define assets for precompilation in `engine.rb`: |