CoffeeScript is JavaScript done right. It provides all of JavaScript's
functionality wrapped in a cleaner, more succinct syntax. In the first
book on this exciting new language, CoffeeScript guru Trevor Burnham
shows you how to hold onto all the power and flexibility of JavaScript
while writing clearer, cleaner, and safer code.
$36.00
Programming Ruby 1.9
Ruby is the fastest growing and most exciting dynamic language
out there. If you need to get working programs delivered fast,
you should add Ruby to your toolbox.
$49.95
Rails Test Prescriptions
Rails Test Prescriptions is a comprehensive guide to testing
Rails applications, covering Test-Driven Development from both a
theoretical perspective (why to test) and from a practical perspective
(how to test effectively). It covers the core Rails testing tools and
procedures for Rails 2 and Rails 3, and introduces popular add-ons,
including Cucumber, Shoulda, Machinist, Mocha, and Rcov.
$34.95
Inspect the log.
tail -25 log/development.log
Rendered /home/rubys/git/rails/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.5ms)
Started GET "/" for 127.0.0.1 at Thu Oct 11 03:13:38 -0400 2012
Connecting to database specified by database.yml
Processing by StoreController#index as */*
Product Load (0.3ms) *[1mSELECT "products".* FROM "products" ORDER BY title*[0m
Rendered store/index.html.erb within layouts/application (122.1ms)
Completed 200 OK in 246ms (Views: 214.4ms | ActiveRecord: 2.3ms)
Started GET "/carts/wibble" for 127.0.0.1 at Thu Oct 11 03:13:39 -0400 2012
Processing by CartsController#show as HTML
Parameters: {"id"=>"wibble"}
Cart Load (0.3ms) SELECT "carts".* FROM "carts" WHERE "carts"."id" = ? LIMIT 1 [["id", "wibble"]]
Attempt to access invalid cart wibble
Redirected to http://localhost:3000/
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
Started GET "/" for 127.0.0.1 at Thu Oct 11 03:13:39 -0400 2012
Processing by StoreController#index as HTML
Product Load (0.3ms) *[1mSELECT "products".* FROM "products" ORDER BY title*[0m
Rendered store/index.html.erb within layouts/application (8.0ms)
Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms)