Sha256: 0f7204e0b4bd8382bb12d773870b7d7381ac0233d95c2d05fdc6eb825acc8753
Contents?: true
Size: 612 Bytes
Versions: 6
Compression:
Stored size: 612 Bytes
Contents
module Logster class Configuration attr_accessor :current_context, :allow_grouping, :environments, :application_version, :web_title attr_writer :subdirectory def initialize # lambda |env,block| @current_context = lambda{ |_, &block| block.call } @environments = [:development, :production] @subdirectory = nil @allow_grouping = false if defined?(::Rails) && defined?(::Rails.env) && ::Rails.env.production? @allow_grouping = true end end def subdirectory @subdirectory || '/logs' end end end
Version data entries
6 entries across 6 versions & 1 rubygems