Sha256: 75e4f225c3f38e7b3ec8cfcc49c1a660695ba178ec1f229bf2190b21936ec19d
Contents?: true
Size: 804 Bytes
Versions: 1
Compression:
Stored size: 804 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'ramaze/log/logging' require 'ramaze/log/hub' require 'ramaze/log/informer' begin require 'win32console' if RUBY_PLATFORM =~ /win32/i rescue LoadError => ex puts ex puts "For nice colors on windows, please `gem install win32console`" Ramaze::Informer.trait[:colorize] = false end module Ramaze autoload :Analogger, "ramaze/log/analogger.rb" autoload :Knotify, "ramaze/log/knotify.rb" autoload :Syslog, "ramaze/log/syslog.rb" autoload :Growl, "ramaze/log/growl.rb" autoload :Xosd, "ramaze/log/xosd.rb" autoload :Logger, "ramaze/log/logger.rb" unless defined?(Log) Log = LogHub.new(Informer) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clivecrous-ramaze-0.3.9.5 | lib/ramaze/log.rb |