Railscasts
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. Have you ever wanted to temporarily disable all validations? Well, ActiveRecord doesn't support this, but that doesn't mean we can't add it. This episode will show you how to open up an existing class and change its behavior.
Show all Visit Show Website http://www.railscasts.comRecently 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.
-
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.
-
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.
-
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.
-
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...
-
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 ...
-
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.
-
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...
-
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.
-
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...