diff options
author | Djoume Salvetti <djoume@taket.org> | 2016-01-27 10:55:49 -0500 |
---|---|---|
committer | Djoume Salvetti <djoume@taket.org> | 2016-01-27 10:55:49 -0500 |
commit | f7d825d778062a6a337e9064aabdb0fda7db12d2 (patch) | |
tree | 8328d33cda42e5ef81fb0a2d7a1eb5f04fb8d7ed | |
parent | 6a75f127a59914f348a2386f39f67b724a5abb01 (diff) | |
download | rails-f7d825d778062a6a337e9064aabdb0fda7db12d2.tar.gz rails-f7d825d778062a6a337e9064aabdb0fda7db12d2.tar.bz2 rails-f7d825d778062a6a337e9064aabdb0fda7db12d2.zip |
Fix typos in asset_pipeline.md
-rw-r--r-- | guides/source/asset_pipeline.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 60f78d011c..5bdaf600ad 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -45,7 +45,7 @@ gem 'coffee-rails' ``` Using the `--skip-sprockets` option will prevent Rails 4 from adding -`sass-rails` and `uglifier` to Gemfile, so if you later want to enable +`sass-rails` and `uglifier` to your Gemfile, so if you later want to enable the asset pipeline you will have to add those gems to your Gemfile. Also, creating an application with the `--skip-sprockets` option will generate a slightly different `config/application.rb` file, with a require statement @@ -66,7 +66,7 @@ config.assets.js_compressor = :uglifier ``` NOTE: The `sass-rails` gem is automatically used for CSS compression if included -in Gemfile and no `config.assets.css_compressor` option is set. +in the Gemfile and no `config.assets.css_compressor` option is set. ### Main Features @@ -1300,7 +1300,7 @@ Rails 4 no longer sets default config values for Sprockets in `test.rb`, so environment are: `config.assets.compile = true`, `config.assets.compress = false`, `config.assets.debug = false` and `config.assets.digest = false`. -The following should also be added to `Gemfile`: +The following should also be added to your `Gemfile`: ```ruby gem 'sass-rails', "~> 3.2.3" |