class Ilog::Configuration

Attributes

background_image[RW]
base[RW]
host[RW]
namespaces[RW]
profile[RW]

Public Class Methods

new() click to toggle source
# File lib/ilog/configuration.rb, line 4
def initialize
        @namespaces = {}
        @host = 'localhost'
        @base = ''
        @background_image = ''
        @profile = {
                'avatar' => '',
                'author' => '',
                'status' => '',
                'website' => '',
                'email' => '',
                'location' => '',
        }
end