Skip to content

Instantly share code, notes, and snippets.

@johnivanoff
Created March 8, 2012 02:08
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 johnivanoff/1998061 to your computer and use it in GitHub Desktop.
Save johnivanoff/1998061 to your computer and use it in GitHub Desktop.
 (0.1ms) begin transaction
 (0.1ms) SAVEPOINT active_record_1
SQL (40.8ms) INSERT INTO "locations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 07 Mar 2012 20:29:52 UTC +00:00], ["name", "location 1"], ["updated_at", Wed, 07 Mar 2012 20:29:52 UTC +00:00]]
 (0.1ms) RELEASE SAVEPOINT active_record_1
Location Load (0.2ms) SELECT "locations".* FROM "locations" LIMIT 1
Started GET "/en/locations/1" for 127.0.0.1 at 2012-03-07 14:29:52 -0600
Processing by LocationsController#show as HTML
Parameters: {"locale"=>"en", "id"=>"1"}
Location Load (0.2ms) SELECT "locations".* FROM "locations" WHERE "locations"."id" = ? LIMIT 1 [["id", "1"]]
Rendered locations/show.html.erb within layouts/application (42.5ms)
Completed 200 OK in 207ms (Views: 201.2ms | ActiveRecord: 0.2ms)
Started GET "/en/locations/1/edit" for 127.0.0.1 at 2012-03-07 14:29:53 -0600
Processing by LocationsController#edit as HTML
Parameters: {"locale"=>"en", "id"=>"1"}
Location Load (0.1ms) SELECT "locations".* FROM "locations" WHERE "locations"."id" = ? LIMIT 1 [["id", "1"]]
Rendered locations/_form.html.erb (4.7ms)
Rendered locations/edit.html.erb within layouts/application (30.1ms)
Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.1ms)
Started PUT "/en/locations/1" for 127.0.0.1 at 2012-03-07 14:29:53 -0600
Processing by LocationsController#show as HTML
Parameters: {"utf8"=>"✓", "location"=>{"name"=>"location has changed"}, "commit"=>"Update Location", "locale"=>"en", "id"=>"1"}
Location Load (0.1ms) SELECT "locations".* FROM "locations" WHERE "locations"."id" = ? LIMIT 1 [["id", "1"]]
Rendered locations/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.1ms)
 (0.9ms) rollback transaction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment