create does not work with ruby 1.8? some weird difference on server

rails2
Espen Antonsen 2009-08-01 18:53:12 +02:00
parent 4884cf2451
commit fa8d6f8bae
1 changed files with 4 additions and 2 deletions

View File

@ -18,12 +18,14 @@ module ScanFiles
end
if album.nil?
puts "New album : " + File.basename( relpath )
album = Album.create( :path => relpath )
album = Album.new( :path => relpath )
album.save
end
photo = Photo.find_by_path( relfile )
if photo.nil?
puts " New photo added " + relfile
photo = Photo.create( :album => album, :path => relfile )
photo = Photo.new( :album => album, :path => relfile )
photo.save
else
puts " Found photo " + relfile
end