diff options
author | Zachary Scott <e@zzak.io> | 2014-12-18 16:54:48 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-18 16:54:48 -0800 |
commit | 65faa8f0da78dda1a180b52d8765893057af193f (patch) | |
tree | ef98ec38c9fd9b97a2b000629594efd5915e4bfa | |
parent | 85990220ab021129bfb5ce15586ea02d2acff92c (diff) | |
download | rails-65faa8f0da78dda1a180b52d8765893057af193f.tar.gz rails-65faa8f0da78dda1a180b52d8765893057af193f.tar.bz2 rails-65faa8f0da78dda1a180b52d8765893057af193f.zip |
Output extension is no longer generated [ci skip]
/cc @senny Is this change documented somewhere?
-rw-r--r-- | guides/source/getting_started.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 31f78ba11c..78316c4ca1 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -259,9 +259,9 @@ invoke helper create app/helpers/welcome_helper.rb invoke assets invoke coffee -create app/assets/javascripts/welcome.js.coffee +create app/assets/javascripts/welcome.coffee invoke scss -create app/assets/stylesheets/welcome.css.scss +create app/assets/stylesheets/welcome.scss ``` Most important of these are of course the controller, located at @@ -1637,8 +1637,8 @@ This creates five files and one empty directory: | app/views/comments/ | Views of the controller are stored here | | test/controllers/comments_controller_test.rb | The test for the controller | | app/helpers/comments_helper.rb | A view helper file | -| app/assets/javascripts/comment.js.coffee | CoffeeScript for the controller | -| app/assets/stylesheets/comment.css.scss | Cascading style sheet for the controller | +| app/assets/javascripts/comment.coffee | CoffeeScript for the controller | +| app/assets/stylesheets/comment.scss | Cascading style sheet for the controller | Like with any blog, our readers will create their comments directly after reading the article, and once they have added their comment, will be sent back |