aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/config/application.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-01-22 00:48:47 +0100
committerXavier Noria <fxn@hashref.com>2012-01-22 00:53:22 +0100
commit787cac159c9bb28543c4c8e4e76a924fa975daa3 (patch)
tree55f01d743f88fa5b6b642aa23bd5383c55a585b8 /railties/guides/code/getting_started/config/application.rb
parent21cfe43354bec4b64bb897abbdf1e72d8d38789f (diff)
downloadrails-787cac159c9bb28543c4c8e4e76a924fa975daa3.tar.gz
rails-787cac159c9bb28543c4c8e4e76a924fa975daa3.tar.bz2
rails-787cac159c9bb28543c4c8e4e76a924fa975daa3.zip
uniformizes the punctuation of comments in some files generated for new apps
Some end with a full stop, some don't. Let's have attention to detail and make them uniform. I have chosen to add full stops according to our documentation guidelines related to RDoc.
Diffstat (limited to 'railties/guides/code/getting_started/config/application.rb')
-rw-r--r--railties/guides/code/getting_started/config/application.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/code/getting_started/config/application.rb b/railties/guides/code/getting_started/config/application.rb
index dad91d7943..d2cd5c028b 100644
--- a/railties/guides/code/getting_started/config/application.rb
+++ b/railties/guides/code/getting_started/config/application.rb
@@ -37,7 +37,7 @@ module Blog
# Use SQL instead of Active Record's schema dumper when creating the database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
- # like if you have constraints or database-specific column types
+ # like if you have constraints or database-specific column types.
# config.active_record.schema_format = :sql
# Enforce whitelist mode for mass assignment.
@@ -46,10 +46,10 @@ module Blog
# parameters by using an attr_accessible or attr_protected declaration.
# config.active_record.whitelist_attributes = true
- # Enable the asset pipeline
+ # Enable the asset pipeline.
config.assets.enabled = true
- # Version of your assets, change this if you want to expire all your assets
+ # Version of your assets, change this if you want to expire all your assets.
config.assets.version = '1.0'
end
end