class Lookbook::PageCollection

def reload_changed(file_paths, changes)

def reload_changed(file_paths, changes)
  modified = Array(changes[:modified])
  removed = Array(changes[:removed]) + modified
  added = Array(changes[:added]) + modified
  remove_by_file_path(removed)
  add(pages_from_paths(added))
end