faster_path 0.0.2

Alternative to Pathname
Documentation
require 'logger'

module LoggerSpecs

  def self.strip_date(str)
    str.gsub(/[A-Z].*\[.*\]/, "").lstrip
  end

  ruby_version_is ''...'2.2' do
    class TestApp < Logger::Application
      def initialize(appname, log_file=nil)
        super(appname)
        self.set_log(log_file) if log_file
      end

      def run
        log(WARN, "Test log message")
      end
    end
  end
end