Latest Screencasts (page 9)
RailsCasts #111 Advanced Search Form (revised)
Railscasts - 2011-11-17 - paid
It is often best to use a GET request when submitting a search form, however if it is an advanced search form with a lot of fields then this may not be ideal. Here I show how to create a search resource to handle this.
Watch this screencastRailsCasts #299 Rails Initialization Walkthrough
Railscasts - 2011-11-14 - paid
In this episode I walk you through the internals of the Rails initialization process and show exactly what happens behind the scenes when starting up the Rails application.
Watch this screencastRailsCasts #298 Getting Started with Spree
Railscasts - 2011-11-14 - free
Spree allows you to quickly turn a Rails project into a full eCommerce application. Here I show how to set it up and configure the look and feel of the store.
Watch this screencastRailsCasts #102 Auto-Complete Association (revised)
Railscasts - 2011-11-10 - paid
A select menu is often used for setting a belongs_to association, but you should also consider using a text field with autocomple. Here I use jQuery UI and show two different solutions: client side and server side.
Watch this screencastRailsCasts #297 Running JavaScript in Ruby
Railscasts - 2011-11-07 - paid
Sometimes logic needs to be shared between the server-side (Ruby) and the client-side (JavaScript). Here I show how to run JavaScript directly in Ruby through ExecJS and therubyracer.
Watch this screencastRailsCasts #296 Mercury Editor
Railscasts - 2011-11-07 - free
Mercury allows you to edit a section of HTML directly in the web browser through a WISYIWYG editor. Here I show how to integrate Mercury into a Rails app and save the changes back to the database.
Watch this screencastRailsCasts #153 PDFs with Prawn (revised)
Railscasts - 2011-11-03 - paid
Prawn is an excellent Ruby library for generating PDF documents. Here you will learn how to add it to a Rails application through a separate PDF renderer class.
Watch this screencastRailsCasts #295 Sharing Mustache Templates
Railscasts - 2011-10-31 - paid
Mustache is a simple, logic-less templating language which allows you to use the same template for both Ruby and JavaScript. See how to set it up with a custom template handler in this episode.
Watch this screencastRailsCasts #294 Playing with PJAX
Railscasts - 2011-10-31 - free
PJAX allows you to quickly update a section of a page using AJAX with automatic pushState support. Here I show how to use both pjax_rails and rack-pjax gems.
Watch this screencastRailsCasts #158 Factories not Fixtures (revised)
Railscasts - 2011-10-27 - paid
Fixtures are external dependencies which can make tests brittle and difficult to read. In this episode I show how to use Factory Girl to generate the needed records directly in the tests.
Watch this screencast