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
#286 Draper
Clean up complex view logic using Draper. This gem provides ...
Clean up complex view logic using Draper. This gem provides decorators (much like presenters) which bundles view logic in an object oriented fashio...
-
HD
#285 Spork
Spork improves the loading time of your test suite by ...
Spork improves the loading time of your test suite by starting up your Rails application once in the background. Use it with Guard for the ultimate...
-
HD
#284 Active Admin
Active Admin allows you to quickly build an admin interface ...
Active Admin allows you to quickly build an admin interface with just a few commands. Not only does it look great, but it is very customizable as s...
-
HD
#283 Authentication with Sorcery
Sorcery is a full-featured, modular solution to authentication which leaves ...
Sorcery is a full-featured, modular solution to authentication which leaves the controller and view layers up to you.
-
HD
#282 Upgrading to Rails 3.1
It is incredibly easy to upgrade to Rails 3.1, but ...
It is incredibly easy to upgrade to Rails 3.1, but if you want to take advantage of the asset pipeline you will need to put in some extra effort. H...
-
HD
#281 Foreman
Foreman can help manage multiple processes that your Rails app ...
Foreman can help manage multiple processes that your Rails app depends upon when running in development. It also provides an export command to move...
-
HD
#280 Pry with Rails
Pry is an alternative to IRB and sports many great ...
Pry is an alternative to IRB and sports many great features. Here I show how to integrate it into a Rails app, and how it can aid in debugging.
-
HD
#279 Understanding the Asset Pipeline
The asset pipeline is probably the biggest feature in Rails ...
The asset pipeline is probably the biggest feature in Rails 3.1, but it can seem like magic at first. Here I dive into exactly how the asset pipeli...
-
HD
#278 Search with Sunspot
Sunspot makes it easy to do full text searching through ...
Sunspot makes it easy to do full text searching through Solr. Here I show how to search on various attributes and add facets for filtering the sear...
-
HD
#277 Mountable Engines
Engines are receiving a major update in Rails 3.1. You ...
Engines are receiving a major update in Rails 3.1. You can mount them at any path, embed assets, run generators and more. See how in this episode.