RailsCasts show

RailsCasts

Summary: Every other week you will be treated to a new, free 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. A Pro option is also available containing more screencasts each week. This is the full resolution version, a lower reoslution for mobile devices is also available.

Podcasts:

 #76 scope_out | File Type: video/mp4 | Duration: 6:38

The scope_out plugin will generate several helpful find methods for you automatically! It's the best way to move the find conditions into your model. Watch this episode for details.

 #75 Complex Forms Part 3 | File Type: video/mp4 | Duration: 16:11

In this third and final episode on complex forms I will show you how to edit a project and multiple tasks all in one form. This includes removing and adding tasks dynamically as well. See the show notes for updated code.

 #74 Complex Forms Part 2 | File Type: video/mp4 | Duration: 8:54

See how to use Javascript and RJS to add and remove form fields dynamically. This episode will build upon the previous episode allowing you to create any number of tasks in one form the same time a project is created.

 #73 Complex Forms Part 1 | File Type: video/mp4 | Duration: 8:05

Complex forms often lead to complex controllers, but that doesn't have to be the case. In this episode see how you can create multiple models through a single form while keeping the controller clean.

 #72 Adding an Environment | File Type: video/mp4 | Duration: 3:22

Rails comes with three environments: development, test, and production. But, you aren't restricted to just these. You can add your own! See how in this episode.

 #71 Testing Controllers with RSpec | File Type: video/mp4 | Duration: 11:17

Controllers are tricky to test, and there's no perfect way to do it. In this episode you will see how I test controllers, and my reasoning behind it.

 #70 Custom Routes | File Type: video/mp4 | Duration: 7:05

In this episode you will learn how to add custom routes, make some parameters optional, and add requirements for other parameters.

 #69 Markaby in Helper | File Type: video/mp4 | Duration: 6:29

Do you ever need to generate HTML code in a helper method? Placing it directly in Ruby strings is not very pretty. Learn a great way to generate HTML through Markaby in this episode.

 #68 OpenID Authentication | File Type: video/mp4 | Duration: 11:09

Ever wonder how to implement OpenID authentication in your Rails app? This episode will show you how to add it to a site with an existing authentication system.

 #67 restful_authentication | File Type: video/mp4 | Duration: 9:30

Need multiple user authentication? If so, the restful_authentication plugin is a great way to go. It will generate some basic authentication code for you which is good starting point to your authentication system. Watch this episode for details.

 #66 Custom Rake Tasks | File Type: video/mp4 | Duration: 10:06

Rake is one of those tools that you don't realize how powerful it is until you start using it. In this episode you will learn how to create custom rake tasks and improve them by using rake features.

 #65 Stopping Spam with Akismet | File Type: video/mp4 | Duration: 11:17

The Railscasts site has been getting a lot of comment spam in the past, but no longer. In this episode I will show you how I solved this problem by using the Akismet web service.

 #64 Custom Helper Modules | File Type: video/mp4 | Duration: 5:06

Rails designates one helper module per controller, but that shouldn't stop you from making custom helper modules to help structure the code. Learn how in this episode.

 #63 Model Name in URL | File Type: video/mp4 | Duration: 6:07

By default, Rails uses the model's id in the URL. What if you want to use the name of the model instead? You can change this behavior by overriding the to_param method in the model. Watch this episode for details.

 #62 Hacking ActiveRecord | File Type: video/mp4 | Duration: 11:13

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.

Comments

Login or signup comment.