class RackConsole::App

Attributes

config[RW]

Public Class Methods

new(config = { }) click to toggle source
Calls superclass method
# File lib/rack_console/app.rb, line 60
def initialize config = { }
  @config = config
  @config[:views_default] ||= "#{File.expand_path('..', __FILE__)}/template/haml"
  @config[:css_dir] ||= "#{File.expand_path('..', __FILE__)}/template/css"
  super
end