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
#387 Cache Digests
The cache_digests gem (also included in Rails 4) will automatically ...
The cache_digests gem (also included in Rails 4) will automatically add a digest to the fragment cache key based on the template. If a template cha...
-
HD
#384 Exploring RubyGems
RubyGems can make it easy to add a feature to ...
RubyGems can make it easy to add a feature to a Rails application, but it can also cause headaches down the road. Here I give some tips on research...
-
HD
#382 Tagging
There are several gems to help implement tags in a ...
There are several gems to help implement tags in a Rails app. Here I show you how to integrate acts-as-taggable-on and then show how to do it from ...
-
HD
#378 FnordMetric
FnordMetric allows you to chart events in real time. This ...
FnordMetric allows you to chart events in real time. This is great for keeping track of user activity in your Rails app as demonstrated in this epi...
-
HD
#376 JRuby Basics
JRuby is a polished and stable Ruby implementation. Here I ...
JRuby is a polished and stable Ruby implementation. Here I show the basics of setting it up and executing Java from within Ruby. I also see how it ...
-
HD
#374 Image Manipulation
Learn how to do extensive image manipulation with the ImageMagick ...
Learn how to do extensive image manipulation with the ImageMagick commands. Also learn how RMagick can be used in combination with CarrierWave to p...
-
HD
#372 Bullet
Bullet will notify you of database queries that can potentially ...
Bullet will notify you of database queries that can potentially be improved through eager loading or counter cache column. A variety of notificatio...
-
HD
#370 Ransack
Ransack allows you to easily build complex search forms. It ...
Ransack allows you to easily build complex search forms. It also helps in adding sortable links and building a dynamic advanced search page.
-
HD
#368 MiniProfiler
MiniProfiler allows you to see the speed of a request ...
MiniProfiler allows you to see the speed of a request conveniently on the page. It also shows the SQL queries performed and allows you to profile a...
-
HD
#366 Sidekiq
Sidekiq allows you to move jobs into the background for ...
Sidekiq allows you to move jobs into the background for asynchronous processing. It uses threads instead of forks so it is much more efficient with...