Sha256: b76f3ba00df53de1a9fe132a695ddb2907c533124fe258708bbb3101b8687d3a

Contents?: true

Size: 871 Bytes

Versions: 1

Compression:

Stored size: 871 Bytes

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.2.0'

  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.5 null-logger.gemspec