Sha256: 8be2fda5cf16514c27097ff0e762a3602190d1eb321fa247e5a45d27c5d0db07
Contents?: true
Size: 300 Bytes
Versions: 6
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true require "pathname" require "dry/logger/backends/stream" module Dry module Logger module Backends class File < Stream def initialize(stream:, **opts) Pathname(stream).dirname.mkpath super end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems