class Avo::Reloader

def files

def files
  # we want to watch some files no matter what
  paths = [
    Rails.root.join("config", "initializers", "avo.rb"),
  ]
  # we want to watch some files only in Avo development
  if reload_lib?
    paths += []
  end
  paths
end