質問編集履歴

1

コードのこの後です

2017/08/17 14:11

投稿

renren643
renren643

スコア279

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,88 @@
1
+ ```D:\>cd tweet_app
2
+
3
+
4
+
5
+ D:\tweet_app>rails s
6
+
7
+ => Booting Puma
8
+
9
+ => Rails 5.1.3 application starting in development on http://localhost:3000
10
+
11
+ => Run `rails server -h` for more startup options
12
+
13
+ *** SIGUSR2 not implemented, signal based restart unavailable!
14
+
15
+ *** SIGUSR1 not implemented, signal based restart unavailable!
16
+
17
+ *** SIGHUP not implemented, signal based logs reopening unavailable!
18
+
19
+ Puma starting in single mode...
20
+
21
+ * Version 3.9.1 (ruby 2.4.1-p111), codename: Private Caller
22
+
23
+ * Min threads: 5, max threads: 5
24
+
25
+ * Environment: development
26
+
27
+ * Listening on tcp://0.0.0.0:3000
28
+
29
+ Use Ctrl-C to stop
30
+
31
+ Started GET "/" for 127.0.0.1 at 2017-08-17 23:02:34 +0900
32
+
33
+ Processing by Rails::WelcomeController#index as HTML
34
+
35
+ Started GET "/" for 127.0.0.1 at 2017-08-17 23:02:34 +0900
36
+
37
+ Processing by Rails::WelcomeController#index as HTML
38
+
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
+
41
+ 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)
42
+
43
+ Rendering D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb
44
+
45
+ Completed 200 OK in 1000ms (Views: 147.7ms)
46
+
47
+
48
+
49
+
50
+
51
+ 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)
52
+
53
+ Completed 200 OK in 20728ms (Views: 20482.9ms)
54
+
55
+
56
+
57
+
58
+
59
+ Started GET "/tweet_app/index" for 127.0.0.1 at 2017-08-17 23:02:55 +0900
60
+
61
+ Processing by TweetAppController#index as HTML
62
+
63
+ Rendering tweet_app/index.html.erb within layouts/application
64
+
65
+ Rendered tweet_app/index.html.erb within layouts/application (1.5ms)
66
+
67
+ Completed 200 OK in 1020ms (Views: 992.3ms)
68
+
69
+
70
+
71
+
72
+
73
+ Started GET "/" for 127.0.0.1 at 2017-08-17 23:05:05 +0900
74
+
75
+ Processing by Rails::WelcomeController#index as HTML
76
+
77
+ Rendering D:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/templates/rails/welcome/index.html.erb
78
+
79
+ 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)
80
+
81
+ Completed 200 OK in 125ms (Views: 63.7ms)
82
+
83
+ コード
84
+
1
- rails のコマンドプロンプトでrails sを起動したのですが、その
85
+ ```rails のコマンドプロンプトでrails sを起動したのですが、その
2
86
 
3
87
  後から「D:>」のような入力町画面が出てきません。
4
88