module Rails::ConsoleMethods

def reload!(print = true)

reloads the environment
def reload!(print = true)
  puts "Reloading..." if print
  Rails.application.reloader.reload!
  true
end