Created
August 3, 2012 12:30
-
-
Save jcasimir/3247167 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:Passes the test harness.