You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By following along with this guide, you'll create a Rails project called
77
-
`blog`, a
78
-
(very) simple weblog. Before you can start building the application, you need to
79
-
make sure that you have Rails itself installed.
77
+
`blog`, a (very) simple weblog. Before you can start building the application,
78
+
you need to make sure that you have Rails itself installed.
80
79
81
80
TIP: The examples below use `$` to represent your terminal prompt in a UNIX-like OS,
82
81
though it may have been customized to appear differently. If you are using Windows,
@@ -167,7 +166,7 @@ of the files and folders that Rails created by default:
167
166
|config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).|
168
167
|config.ru|Rack configuration for Rack based servers used to start the application.|
169
168
|db/|Contains your current database schema, as well as the database migrations.|
170
-
|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](http://gembundler.com).|
169
+
|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](http://bundler.io).|
171
170
|lib/|Extended modules for your application.|
172
171
|log/|Application log files.|
173
172
|public/|The only folder seen by the world as-is. Contains static files and compiled assets.|
0 commit comments