Sha256: 2744a3e3e72b65466119f78d3261402488e7f83bf04888d9bf3ce903464fb769

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'null_logger/version'

Gem::Specification.new do |spec|
  spec.name        = 'null-logger'
  spec.version     = NullLogger::VERSION
  spec.authors     = ['Maciej Mensfeld', 'Adam Gwozdowski']
  spec.email       = %w[maciej@coditsu.io adam99g@gmail.com]
  spec.summary     = 'A simple logger that does not log anything.'
  spec.description = 'It can be used for defining an interface for other loggers'
  spec.homepage    = 'https://github.com/karafka/null-logger'
  spec.license     = 'MIT'

  spec.required_ruby_version = '>= 2.5.0'

  if $PROGRAM_NAME.end_with?('gem')
    spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
  end

  spec.cert_chain    = %w[certs/mensfeld.pem]
  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = %w[lib]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
null-logger-0.1.6 null-logger.gemspec