Model.find_or_create_by_attribute
I was under the impression that find_or_create_by worked like so…
Model.find_or_create_by_attribute('attribute, :other => '1', :stuff => '2')
But it seems its actually like….hmmzzz….when did that happen or am I going crazy.
Model.find_or_create_by_attribute(:attribute => 'attribute', :other => '1', :stuff => '2')