質問編集履歴
1
コードのこの後です
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,3 +1,45 @@
|
|
1
|
+
```D:\>cd tweet_app
|
2
|
+
|
3
|
+
D:\tweet_app>rails s
|
4
|
+
=> Booting Puma
|
5
|
+
=> Rails 5.1.3 application starting in development on http://localhost:3000
|
6
|
+
=> Run `rails server -h` for more startup options
|
7
|
+
*** SIGUSR2 not implemented, signal based restart unavailable!
|
8
|
+
*** SIGUSR1 not implemented, signal based restart unavailable!
|
9
|
+
*** SIGHUP not implemented, signal based logs reopening unavailable!
|
10
|
+
Puma starting in single mode...
|
11
|
+
* Version 3.9.1 (ruby 2.4.1-p111), codename: Private Caller
|
12
|
+
* Min threads: 5, max threads: 5
|
13
|
+
* Environment: development
|
14
|
+
* Listening on tcp://0.0.0.0:3000
|
15
|
+
Use Ctrl-C to stop
|
16
|
+
Started GET "/" for 127.0.0.1 at 2017-08-17 23:02:34 +0900
|
17
|
+
Processing by Rails::WelcomeController#index as HTML
|
18
|
+
Started GET "/" for 127.0.0.1 at 2017-08-17 23:02:34 +0900
|
19
|
+
Processing by Rails::WelcomeController#index as HTML
|
20
|
+
Rendering D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb
|
21
|
+
Rendered D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
|
22
|
+
Rendering D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb
|
23
|
+
Completed 200 OK in 1000ms (Views: 147.7ms)
|
24
|
+
|
25
|
+
|
26
|
+
Rendered D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
|
27
|
+
Completed 200 OK in 20728ms (Views: 20482.9ms)
|
28
|
+
|
29
|
+
|
30
|
+
Started GET "/tweet_app/index" for 127.0.0.1 at 2017-08-17 23:02:55 +0900
|
31
|
+
Processing by TweetAppController#index as HTML
|
32
|
+
Rendering tweet_app/index.html.erb within layouts/application
|
33
|
+
Rendered tweet_app/index.html.erb within layouts/application (1.5ms)
|
34
|
+
Completed 200 OK in 1020ms (Views: 992.3ms)
|
35
|
+
|
36
|
+
|
37
|
+
Started GET "/" for 127.0.0.1 at 2017-08-17 23:05:05 +0900
|
38
|
+
Processing by Rails::WelcomeController#index as HTML
|
39
|
+
Rendering D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb
|
40
|
+
Rendered D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb (15.6ms)
|
41
|
+
Completed 200 OK in 125ms (Views: 63.7ms)
|
42
|
+
コード
|
1
|
-
rails のコマンドプロンプトでrails sを起動したのですが、その
|
43
|
+
```rails のコマンドプロンプトでrails sを起動したのですが、その
|
2
44
|
後から「D:>」のような入力町画面が出てきません。
|
3
45
|
入力まち状態にするにはどうしたらいいのでしょうか?
|