aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-12-07 23:20:35 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-12-07 23:20:35 -0800
commited78770b1a13788a5d3fcae484f34654de580bd5 (patch)
treeacbfe5c166ae76a4bb3580e747d44dff9d867db8 /guides/source/configuring.md
parente618adbcabe59eaccfab1f721eb3cf1e915e012e (diff)
downloadrails-ed78770b1a13788a5d3fcae484f34654de580bd5.tar.gz
rails-ed78770b1a13788a5d3fcae484f34654de580bd5.tar.bz2
rails-ed78770b1a13788a5d3fcae484f34654de580bd5.zip
Remove references to Rails versions.
There's no reason for guides to reference old behaviors. They should be current as of the versions of Rails that they ship with, and including older information just clutters thing. I discussed this change with @fxn and he agrees.
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index eae0f5b641..446f767f0c 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -135,8 +135,6 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
### Configuring Assets
-Rails 3.1 and up, by default, is set up to use the `sprockets` gem to manage assets within an application. This gem concatenates and compresses assets in order to make serving them much less painful.
-
* `config.assets.enabled` a flag that controls whether the asset pipeline is enabled. It is explicitly initialized in `config/application.rb`.
* `config.assets.compress` a flag that enables the compression of compiled assets. It is explicitly set to true in `config/production.rb`.
@@ -165,7 +163,7 @@ Rails 3.1 and up, by default, is set up to use the `sprockets` gem to manage ass
### Configuring Generators
-Rails 3 allows you to alter what generators are used with the `config.generators` method. This method takes a block:
+Rails allows you to alter what generators are used with the `config.generators` method. This method takes a block:
```ruby
config.generators do |g|