Sha256: b214e62569106ec276d203d8a4bc211b37e2ef6ea4b22d3724a5da48d5c04ad4
Contents?: true
Size: 416 Bytes
Versions: 38
Compression:
Stored size: 416 Bytes
Contents
module Librarian module Action class Base attr_accessor :environment private :environment= attr_accessor :options private :options= def initialize(environment, options = { }) self.environment = environment self.options = options end private def debug(*args, &block) environment.logger.debug(*args, &block) end end end end
Version data entries
38 entries across 38 versions & 5 rubygems