Created
August 3, 2012 12:30
-
-
Save jcasimir/3247167 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOOKUP_CHAIN = [:params, :user, :session, :http, :default] | |
def self.set_by(inputs) | |
locale = nil | |
LOOKUP_CHAIN.each do |lookup| | |
locale = send("by_#{lookup}", inputs[lookup]) | |
break if locale | |
end | |
return locale | |
end |
Thought about this the other day but just got around to trying it this afternoon. I believe #any?
stops when it reaches a truthy result, so how about this:
def self.set_by(inputs)
locale = nil
LOOKUP_CHAIN.any? { |lookup| locale = send("by_#{lookup}", inputs[lookup]) }
return locale
end
Passes the test harness.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This Gist was posted alongside a tweet by the author: