Sha256: a461563319c64d30368f1ce3a04af67c056ef273c96feb255fb0fc0630b51b00
Contents?: true
Size: 654 Bytes
Versions: 13
Compression:
Stored size: 654 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' require 'logging' ::Logging.configure { logger('Webby') { level :info appenders 'stdout' } logger('Webby::Journal') { level :info additive false appenders 'journal' } appender('stdout') { type 'Stdout' layout { type 'Pattern' pattern "[%d] %5l: %m\n" date_pattern "%H:%M:%S" } } appender('journal') { type 'Stdout' layout { type 'Pattern' pattern "%m\n" } } } require File.expand_path( File.join(File.dirname(__FILE__), %w[.. lib webby])) ::Webby::Apps::Main.run(ARGV) # EOF
Version data entries
13 entries across 13 versions & 8 rubygems