aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-09-14 01:26:04 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-09-14 02:38:11 +0900
commit6afb3dbf896ff1fd646aff2bcf8b2b4b6d57c18b (patch)
treecbd45a6440d32adfc2d935d5c7e9502f59123427 /guides/source/getting_started.md
parent38b3af738a2c2f43029910a7316d7505b50ccb0b (diff)
downloadrails-6afb3dbf896ff1fd646aff2bcf8b2b4b6d57c18b.tar.gz
rails-6afb3dbf896ff1fd646aff2bcf8b2b4b6d57c18b.tar.bz2
rails-6afb3dbf896ff1fd646aff2bcf8b2b4b6d57c18b.zip
Update Getting Started with Rails [ci skip]
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 1e5c6fe3d0..ecc3f95a76 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -177,6 +177,7 @@ of the files and folders that Rails created by default:
|Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the [Bundler website](https://bundler.io).|
|lib/|Extended modules for your application.|
|log/|Application log files.|
+|package.json|This file allows you to specify what npm dependencies are needed for your Rails application. This file is used by Yarn. For more information about Yarn, see the [Yarn website](https://yarnpkg.com/lang/en/).|
|public/|The only folder seen by the world as-is. Contains static files and compiled assets.|
|Rakefile|This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing Rakefile, you should add your own tasks by adding files to the `lib/tasks` directory of your application.|
|README.md|This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on.|
@@ -184,6 +185,7 @@ of the files and folders that Rails created by default:
|tmp/|Temporary files (like cache and pid files).|
|vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.|
|.gitignore|This file tells git which files (or patterns) it should ignore. See [GitHub - Ignoring files](https://help.github.com/articles/ignoring-files) for more info about ignoring files.
+|.ruby-version|This file contains the default Ruby version.|
Hello, Rails!
-------------