1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Hardcode the VERSION variable, it isn't accessible otherwise
Author: Simon Quigley <tsimonq2@debian.org>
Origin: vendor
Forwarded: not-needed
Last-Update: 2026-03-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lib/lumberjack.rb
+++ b/lib/lumberjack.rb
@@ -30,7 +30,7 @@ require "pathname"
# @see Lumberjack::Logger
# @see Lumberjack::ContextLogger
module Lumberjack
- VERSION = File.read(File.join(__dir__, "..", "VERSION")).strip.freeze
+ VERSION = "2.0.4".freeze
LINE_SEPARATOR = ((RbConfig::CONFIG["host_os"] =~ /mswin/i) ? "\r\n" : "\n")
|