class Goatmail::App

Public Class Methods

dependencies() click to toggle source
# File lib/goatmail/app.rb, line 10
def self.dependencies; []; end
reload!() click to toggle source
# File lib/goatmail/app.rb, line 11
def self.reload!; end
setup_application!() click to toggle source
# File lib/goatmail/app.rb, line 9
def self.setup_application!; end

Public Instance Methods

h(text) click to toggle source
# File lib/goatmail/app.rb, line 31
def h(text)
  Rack::Utils.escape_html(text)
end
root_path() click to toggle source
# File lib/goatmail/app.rb, line 27
def root_path
  "#{env['SCRIPT_NAME']}/"
end
title() click to toggle source
# File lib/goatmail/app.rb, line 35
def title
  [ settings.environment, Goatmail.name ].join("::")
end