Skip to content

Instantly share code, notes, and snippets.

@teeparham
Created March 6, 2013 08:05
Show Gist options
  • Save teeparham/5097542 to your computer and use it in GitHub Desktop.
Save teeparham/5097542 to your computer and use it in GitHub Desktop.
rails 3.2.12 + ruby 2.0 + bare project + tracepoint
=> Booting WEBrick
=> Rails 3.2.12 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2013-03-06 01:02:27] INFO WEBrick 1.3.1
[2013-03-06 01:02:27] INFO ruby 2.0.0 (2013-02-24) [x86_64-darwin11.4.2]
--- 1
/monkeys/index
382 classes used
1316 methods used
11565 methods dispatched
Started GET "/monkeys/index" for 127.0.0.1 at 2013-03-06 01:03:03 -0700
Connecting to database specified by database.yml
Processing by MonkeysController#index as HTML
Rendered monkeys/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
/monkeys.js
116 classes used
316 methods used
599 methods dispatched
--- 2
/monkeys/index
218 classes used
630 methods used
1754 methods dispatched
Started GET "/monkeys/index" for 127.0.0.1 at 2013-03-06 01:03:27 -0700
Processing by MonkeysController#index as HTML
Rendered monkeys/index.html.erb within layouts/application (0.0ms)
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
/monkeys.css
100 classes used
242 methods used
414 methods dispatched
@mattetti
Copy link

mattetti commented Mar 7, 2013

rails g m Monkeys name:string && rails g c Monkeys index". GET /monkeys/index

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment