Sha256: 02df7865822d899102c89440e9d14684bbe3d91ea008e409c8b6232e6b9c29ad

Contents?: true

Size: 1.09 KB

Versions: 9

Compression:

Stored size: 1.09 KB

Contents

#
# A Rack handler for Jetty 8.
#
# Written by Don Werve <don@madwombat.com>
#

require 'java'

# Save our launch environment for spawning children later.
module Mizuno
    LAUNCH_ENV = $LOAD_PATH.map { |i| "-I#{i}" }.push($0)

    HOME = File.expand_path(File.dirname(__FILE__))

    #
    # Tell log4j not to complain to the console about a missing
    # log4j.properties file, as we configure it programmatically in
    # Mizuno::Server (http://stackoverflow.com/questions/6849887)
    #
    def Mizuno.initialize_logger
        require_jars(%w(log4j slf4j-api slf4j-log4j12))
        Java.org.apache.log4j.Logger.getRootLogger.setLevel( \
            Java.org.apache.log4j.Level::INFO)
    end

    #
    # Loads jarfiles independent of versions.
    #
    def Mizuno.require_jars(*names)
        names.flatten.each do |name|
            file = Dir[File.join(HOME, 'java', "#{name}-*.jar")].first
            file ||= Dir[File.join(HOME, 'java', "#{name}.jar")].first
            raise("Unknown or missing jar: #{name}") unless file
            require file
        end
    end
end

Mizuno.initialize_logger

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mizuno-0.6.11 lib/mizuno.rb
mizuno-0.6.10 lib/mizuno.rb
mizuno-0.6.9 lib/mizuno.rb
mizuno-0.6.8 lib/mizuno.rb
mizuno-0.6.7 lib/mizuno.rb
mizuno-0.6.6 lib/mizuno.rb
mizuno-0.6.5 lib/mizuno.rb
mizuno-0.6.4 lib/mizuno.rb
mizuno-0.6.3 lib/mizuno.rb