Skip to content

Instantly share code, notes, and snippets.

@leonid-shevtsov
Created April 29, 2012 13:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leonid-shevtsov/2550423 to your computer and use it in GitHub Desktop.
Save leonid-shevtsov/2550423 to your computer and use it in GitHub Desktop.
Like find(:first), but asserts that query returns exactly one element. Works with scopes.
class MyModel < ActiveRecord::Base
def self.one(find_hash={})
results = find(:all, find_hash)
if results.size != 1
raise "Expected one record, found #{results.size}"
else
return results[0]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment