global

def reload!(print=true)

reloads the environment
def reload!(print=true)
  puts "Reloading..." if print
  # This triggers the to_prepare callbacks
  ActionDispatch::Callbacks.new(Proc.new {}, false).call({})
  true
end