18 lines
253 B
Ruby
18 lines
253 B
Ruby
require "attentive/version"
|
|
|
|
module Attentive
|
|
autoload :Server, 'attentive/server'
|
|
|
|
class << self
|
|
attr_accessor :title
|
|
end
|
|
|
|
def self.configure
|
|
yield self
|
|
end
|
|
|
|
def self.root
|
|
Pathname(File.expand_path('../..', __FILE__))
|
|
end
|
|
end
|