Skip to content

Instantly share code, notes, and snippets.

@luislavena
Created March 9, 2012 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luislavena/248cdd9d566d53620e86 to your computer and use it in GitHub Desktop.
Save luislavena/248cdd9d566d53620e86 to your computer and use it in GitHub Desktop.
# No request:
V:\emptyapp2>ruby script\rails server
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2012-03-09 20:35:53] INFO WEBrick 1.3.1
[2012-03-09 20:35:53] INFO ruby 1.9.3 (2012-03-03) [i386-mingw32]
[2012-03-09 20:35:53] INFO WEBrick::HTTPServer#start: pid=5928 port=3000
[2012-03-09 20:36:00] INFO going to shutdown ...
[2012-03-09 20:36:00] INFO WEBrick::HTTPServer#start done.
Exiting
# Hitting index
V:\emptyapp2>ruby script\rails server
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2012-03-09 20:36:27] INFO WEBrick 1.3.1
[2012-03-09 20:36:27] INFO ruby 1.9.3 (2012-03-03) [i386-mingw32]
[2012-03-09 20:36:27] INFO WEBrick::HTTPServer#start: pid=5352 port=3000
Started GET "/assets/rails.png" for 127.0.0.1 at 2012-03-09 20:36:36 -0300
Served asset /rails.png - 304 Not Modified (11ms)
[2012-03-09 20:36:37] WARN Could not determine content-length of response body. Set content-length
of the response or set Response#chunked = true
Started GET "/rails/info/properties" for 127.0.0.1 at 2012-03-09 20:36:39 -0300
Processing by Rails::InfoController#properties as */*
Rendered inline template (21.0ms)
Completed 200 OK in 106ms (Views: 105.0ms | ActiveRecord: 0.0ms)
[2012-03-09 20:36:45] INFO going to shutdown ...
[2012-03-09 20:36:46] INFO WEBrick::HTTPServer#start done.
Exiting
# No request:
V:\emptyapp>ruby script\rails server
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2012-03-09 20:33:39] INFO WEBrick 1.3.1
[2012-03-09 20:33:39] INFO ruby 2.0.0 (2012-03-10) [i386-mingw32]
[2012-03-09 20:33:39] INFO WEBrick::HTTPServer#start: pid=492 port=3000
[2012-03-09 20:33:41] INFO going to shutdown ...
[2012-03-09 20:33:41] INFO WEBrick::HTTPServer#start done.
Exiting
# Hitting index.html:
V:\emptyapp>ruby script\rails server
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2012-03-09 20:30:50] INFO WEBrick 1.3.1
[2012-03-09 20:30:50] INFO ruby 2.0.0 (2012-03-10) [i386-mingw32]
[2012-03-09 20:30:50] INFO WEBrick::HTTPServer#start: pid=7180 port=3000
Started GET "/assets/rails.png" for 127.0.0.1 at 2012-03-09 20:31:43 -0300
Served asset /rails.png - 200 OK (11ms)
Started GET "/rails/info/properties" for 127.0.0.1 at 2012-03-09 20:31:47 -0300
Processing by Rails::InfoController#properties as */*
Rendered inline template (20.0ms)
Completed 200 OK in 89ms (Views: 89.0ms | ActiveRecord: 0.0ms)
[2012-03-09 20:31:58] INFO going to shutdown ...
[2012-03-09 20:31:58] INFO WEBrick::HTTPServer#start done.
Exiting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment