Sha256: 101b37053d202baf2ac6c75d95ed6fa8ed52cc0c50c9f30f6f44a985e621194e
Contents?: true
Size: 790 Bytes
Versions: 2
Compression:
Stored size: 790 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/inform/informing' require 'ramaze/inform/hub' require 'ramaze/inform/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/inform/analogger.rb" autoload :Knotify, "ramaze/inform/knotify.rb" autoload :Syslog, "ramaze/inform/syslog.rb" autoload :Growl, "ramaze/inform/growl.rb" autoload :Xosd, "ramaze/inform/xosd.rb" unless defined?(Inform) Inform = LogHub.new(Informer) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ramaze-0.3.0 | lib/ramaze/inform.rb |
ramaze-0.3.5 | lib/ramaze/inform.rb |