Method: MemoryModel::Collection::Finders#find_or_create_by!

Defined in:
lib/memory_model/collection/finders.rb

#find_or_create_by!(hash) ⇒ Object



39
40
41
# File 'lib/memory_model/collection/finders.rb', line 39

def find_or_create_by!(hash)
  find_by(hash) || model.create!(hash)
end