Project

General

Profile

Download (1.38 KB) Statistics
| Branch: | Tag: | Revision:
#--
# CyborgHood, a distributed system management software.
# Copyright (c) 2009-2011 Marc Dequènes (Duck) <Duck@DuckCorp.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#++

$KCODE = 'UTF8'
require 'jcode'
require 'pp'
require 'set'
require 'ostruct'
require 'needle'
require 'cyborghood/base/exceptions'
require 'cyborghood/base/config'
require 'cyborghood/base/ruby_extra'
require 'cyborghood/base/logger'
require 'cyborghood/base/i18n'


ENV['LC_ALL'] = "C"

module CyborgHood
PRODUCT = "CyborgHood"
VERSION = "0.4.0"

add_deferred_translations

def register_services(container)
container.define do |b|
b.config do
Config.instance
end

b.logger do
Logger.instance
end
end
end

module_function :register_services

autoload :Cyborg, 'cyborghood/cyborg'
end
(1-1/4)