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
#166 Metric Fu
Metric Fu is a compilation of several tools to help ...
Metric Fu is a compilation of several tools to help find areas of code that could be improved. In this episode I show you how to setup this tool on...
-
HD
#165 Edit Multiple
Use checkboxes to select multiple records and edit them all ...
Use checkboxes to select multiple records and edit them all in one form as shown in this episode. With virtual attributes you can even edit values ...
-
HD
#164 Cron in Ruby
Cron is great for handling recurring tasks, but it is ...
Cron is great for handling recurring tasks, but it is an external dependency with a crazy syntax. In this episode I show you how to use Whenever to...
-
HD
#163 Self-Referential Association
Creating a social networking site often requires a self-referential association ...
Creating a social networking site often requires a self-referential association on the User model to define friends/followers. In this episode I sh...
-
HD
#162 Tree Based Navigation
The acts_as_tree plugin provides many methods for handling a tree ...
The acts_as_tree plugin provides many methods for handling a tree based association. In this episode I show how to build a navigation system with t...
-
HD
#161 Three Profiling Tools
Ever want to know what Rails is doing under the ...
Ever want to know what Rails is doing under the hood during a request? In this episode I show three different profiling tools: New Relic RPM, FiveR...
-
HD
#160 Authlogic
Authentication can get very complex. In this episode I show ...
Authentication can get very complex. In this episode I show how Authlogic can handle this complexity while you stay in control of how it is present...
-
HD
#159 More on Cucumber
There is a lot more to Cucumber than I showed ...
There is a lot more to Cucumber than I showed in an earlier episode. See how to refactor complex scenarios in this episode.
-
HD
#158 Factories not Fixtures
Fixtures are external dependencies which can make tests brittle and ...
Fixtures are external dependencies which can make tests brittle and difficult to read. In this episode I show a better alternative using factories ...
-
HD
#157 RSpec Matchers & Macros
You can improve the readability and remove duplication in RSpec ...
You can improve the readability and remove duplication in RSpec by adding matchers and macros. Learn how in this episode.