Update Rails startup screenshot at Rails Guide

This commit updates Rails startup screenshot at Rails Guide
to support 5889e6ba92

Here are some notes:

- It used to be called "Yay! You're on Rails!" page. Now the new page
  does not have any text messages. Then I just call it "The Rails startup
  page".

- This Rails statup page screenshot is taken at my Macbook and saved as
  PNG. No compressions have been made.

- Specific Rails version and Ruby versions are included.

Fix#43892
This commit is contained in:
Yasuo Honda 2021-12-16 14:50:41 +09:00
parent 2a55e3432c
commit 4f08d9d753
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 KiB

After

Width:  |  Height:  |  Size: 329 KiB

View File

@ -247,14 +247,14 @@ This will start up Puma, a web server distributed with Rails by default. To see
your application in action, open a browser window and navigate to
<http://localhost:3000>. You should see the Rails default information page:
![Yay! You're on Rails! screenshot](images/getting_started/rails_welcome.png)
![Rails startup page screenshot](images/getting_started/rails_welcome.png)
When you want to stop the web server, hit Ctrl+C in the terminal window where
it's running. In the development environment, Rails does not generally
require you to restart the server; changes you make in files will be
automatically picked up by the server.
The "Yay! You're on Rails!" page is the _smoke test_ for a new Rails
The Rails startup page is the _smoke test_ for a new Rails
application: it makes sure that you have your software configured correctly
enough to serve a page.