Display Shows:

My Language:

Railscasts (iPod & Apple TV)

Three times a week you will be treated to a new Railscasts episode featuring tips and tricks with Ruby on Rails, the popular web development framework. These screencasts are short and focus on one technique so you can quickly move on to applying it to ...

Three times a week you will be treated to a new Railscasts episode featuring tips and tricks with Ruby on Rails, the popular web development framework. These screencasts are short and focus on one technique so you can quickly move on to applying it to your own project. The topics are geared toward the intermediate Rails developer, but beginners and experts will get something out of it as well. Be careful when storing a model in a session. It will behave differently than you expect and can easily get out of sync with the database. Instead of storing the model directly in the session, store the id to the model and use that to fetch it from the database.

Show all Visit Show Website http://www.railscasts.com

Recently Aired


  • HD

    #116 Selenium

    Selenium is a great way to test your app automatically ...

    Selenium is a great way to test your app automatically through a browser. See how it works in this episode.

    Jun 30, 2008 Read more
  • HD

    #115 Caching in Rails 2.1

    Rails 2.1 brings some new caching features which makes it ...

    Rails 2.1 brings some new caching features which makes it very easy to cache any values including models. See how in this episode.

    Jun 23, 2008 Read more
  • HD

    #114 Endless Page

    Ever wondered how some sites seem to have endless scrolling ...

    Ever wondered how some sites seem to have endless scrolling page with no pagination? Find out how easy it is to do this in Rails in this episode.

    Jun 16, 2008 Read more
  • HD

    #113 Contributing to Rails with Git

    If you want Rails to behave a certain way, try ...

    If you want Rails to behave a certain way, try changing it and submitting a patch. This episode will show how to do exactly this using Git.

    Jun 9, 2008 Read more
  • HD

    #112 Anonymous Scopes

    The scoped method allows you to generate named scopes on ...

    The scoped method allows you to generate named scopes on the fly. In this episode I show how to use anonymous scopes to improve the conditional log...

    Jun 2, 2008 Read more
  • HD

    #111 Advanced Search Form

    If you need to create an advanced search with a ...

    If you need to create an advanced search with a lot of fields, it may not be ideal to use a GET request as I showed in episode 37. In this episode ...

    May 26, 2008 Read more
  • HD

    #110 Gem Dependencies

    In Rails 2.1 we now have the ability to set ...

    In Rails 2.1 we now have the ability to set gem dependencies. Now it's easier than ever to specify which ruby gems our rails app relies on.

    May 23, 2008 Read more
  • HD

    #109 Tracking Attribute Changes

    Rails 2.1 keeps track of the changes you make to ...

    Rails 2.1 keeps track of the changes you make to a model's attributes. It also allows you to see what the previous value was. But watch out for the...

    May 21, 2008 Read more
  • HD

    #108 named_scope

    The named_scope method in Rails 2.1 makes performing finds on ...

    The named_scope method in Rails 2.1 makes performing finds on models very elegant and convenient. See how in this episode.

    May 19, 2008 Read more
  • HD

    #107 Migrations in Rails 2.1

    Migrations now have a timestamp as their version number in ...

    Migrations now have a timestamp as their version number in Rails 2.1. In this episode I will explain this change as well as show you some other coo...

    May 16, 2008 Read more
Loading...