Make sure that seeds happens on run over empty database. #4

Open
bopm wants to merge 2 commits from bopm/master into master
1 changed files with 3 additions and 3 deletions
Showing only changes of commit d3f99bc66f - Show all commits

View File

@ -48,7 +48,7 @@ module SeedFuMongoid
def document def document
@doc ||= begin @doc ||= begin
@klass.find_by(constraint_search) @klass.find_by(constraint_search) || @klass.new
rescue => e rescue => e
@klass.new @klass.new
end end
@ -58,9 +58,9 @@ module SeedFuMongoid
return @constraint_search if @constraint_search return @constraint_search if @constraint_search
@constraint_search = {} @constraint_search = {}
constraints.each do |constraint| @constraints.each do |constraint|
if data[constraint] if data[constraint]
@constraint_search[constraint] = proxy[constraint] @constraint_search[constraint] = data[constraint]
else else
raise ConstraintNotDefined.new(constraint) raise ConstraintNotDefined.new(constraint)
end end