Welcome to Giant Robots Smashing Into Other Giant Robots — a weblog about development, business, design and technology — written by thoughtbot.
coding without ifs
The thing that complicates code more than anything else is conditional logic; ‘ifs’, ‘elses’, ‘unlesses’, nested and un-nested. I always try to eliminate them anyway I can because without them, the code is easier to understand and has a better rhythm. For instance:
1 2 3 4 5 6 7 8 9 |
def update_subscriptions Subscription.find(:all).each do |each| if each.expired? each.renew! else each.update! end end end |
vs.
1 2 3 4 5 6 7 |
def update_subscriptions subscriptions = Subscription.find :all expired = subscriptions.select {|each| each.expired?} expired.each {|each| each.renew!} active = subscriptions.reject {|each| each.expired?} active.each {|each| each.update!} end |
In the above code, we let Enumerable’s #select and #reject methods take care of the conditional logic, i.e. we moved the conditional logic into Ruby and out of our code. Look at how in the second example the code just flows up and down, no indenting and very easy to read. Even non-programmers would choose the second example as being more straightforward and elegant.
Another example.
Say controller filters in Rails worked like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
class EventsController < ApplicationController def new end def create end def index end def show end private def filter if action_name == 'new' || action_name == 'create' authenticate end end # or a la Searching Literal def filter if %w(new create).include?(action_name) authenticate end end def authenticate unless session[:user_id] redirect_to login_url end end end |
In our #filter method we need conditional logic because we only want to require the user to be logged in for the #new and #create actions. However, Rails’ filter class methods support an ‘only’ keyword parameter. So we can rewrite it using the #before_filter class method instead:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
class EventsController < ApplicationController before_filter :authenticate, :only => [:new, create] def new end def create end def index end def show end private def authenticate unless session[:user_id] redirect_to login_url end end end |
Very nice. This time we moved the conditional logic into the framework. Now somewhere in Rails’ #before_filter there’s an ‘if’ statement and 1 less ‘if’ in our code.
ActiveRecord::Base validations also support this. Say that when registering for our site, age is optional, but if you do provide an age, it has to be between 18 and 30.
1 2 3 4 5 6 7 8 9 10 11 |
class User < ActiveRecord::Base def validate if ! age.blank? if ! (18..30).include?(age) errors.add :age, 'must be between 18 and 30' end end end end |
I don’t like it, look at all the conditional logic. Fortunately ActiveRecord::Base’s validation class methods can help us out:
1 2 3 4 5 6 7 8 |
class User < ActiveRecord::Base validates_inclusion_of :age, :allow_nil => true, :in => 18..30, :message => 'must be between 18 and 30' end |
Much better. Now Rails’ #validates_inclusion_of has the 2 ‘if’ statements and our code has 0.
Interestingly, Rails’ ActiveRecord::Base callbacks do not support an ‘if’ parameter.
For example, say we have publications in our application. And we support 2 types of publications call them ‘ABC’ and ‘XYZ’. Now the information for ‘ABC’ and ‘XYZ’ publications are provided by their respective sites, so we have to request the publication information from them via HTTP. We store it locally to avoid looking it up remotely every time we display a publication on our site. And that we don’t have to worry about the data getting out of sync because the remote data will never change.
1 2 3 4 5 6 7 8 9 10 11 12 |
class Publication < ActiveRecord::Base def before_create if type == 'ABC' self.attributes = AbcGateway.find name # the publication name is enough to uniquely identify itself end if type == 'XYZ' self.attributes = XyzGateway.find name # the publication name is enough to uniquely identify itself end end end |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
class Publication < ActiveRecord::Base before_create :abc, :if => Proc.new {|publication| publication.type == 'ABC'} before_create :xyz, :if => Proc.new {|publication| publication.type == 'XYZ'} def abc self.attributes = AbcGateway.find name end def xyz self.attributes = XyzGateway.find name end end |
That’s much tighter without the conditionals.
One piece of Ruby syntactic sugar that I don’t care for are ‘if’ and ‘unless’ modifiers. My first example could be re-written more compactly using them like so:
1 2 3 4 5 6 |
def update_subscriptions Subscription.find(:all).each do |each| each.renew! if each.expired? each.update! unless each.expired? end end |
I don’t like this style because the code now flows as if there’s no conditional logic. The ‘if’ and ‘unless’ modifiers have hidden the obviousness of conditional logic, i.e. the indenting. I like to see the conditional logic because it makes the code look ugly and its always there reminding me to think about how to refactor its complicatedness and ugliness out of there.
The same goes for the old ternary operator:
1 2 3 4 5 |
def update_subscriptions Subscription.find(:all).each do |each| each.expired? ? each.renew! : each.update! end end |
Even shorter. But once again the conditional logic is not obvious. Also the double ’?’ is ugly since Ruby allows ’?’ in method names; this makes using the ternary operator not as elegant as in other languages.
About this entry
You're reading an entry on GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS, the company weblog of thoughtbot, inc.
- Author:
- Jared Carroll
- Published:
- May 1st 09:48 AM
- Updated:
- September 30th 09:57 AM
- Sections:
- Development
thoughtbot is hiring
We are hiring web developers and web designers in both Boston and New York, NY.
What are we up to?
We built Shoulda, an eclectic set of additions to Test::Unit; Paperclip to manage uploaded files without hassle; Jester, a REST/ActiveResource client library written in Javascript, and Squirrel, an enhancement for ActiveRecord's find syntax; — amongst some other projects.

Chad (President) and Jon (CTO) co-authored a technical book titled Pro Active Record: Databases with Ruby and Rails, which explores the ins and outs of the ActiveRecord ruby library. You can buy it today at Amazon.com.
About thoughtbot, inc.
We are a small web application development consulting business, with offices in Boston, MA and New York, NY. If you're looking to find a team for your next web development project or your new web application — get in touch.
28 comments
Jump to comment form