Sha256: a1629cea3c5993b60881a44ab6d2addc85c03be6b96236f3e8316a0d80c82cd9
Contents?: true
Size: 881 Bytes
Versions: 1
Compression:
Stored size: 881 Bytes
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'hedgelog/version' Gem::Specification.new do |spec| spec.name = 'hedgelog' spec.version = Hedgelog::VERSION spec.required_ruby_version = '>= 2.7.0' spec.licenses = ['MIT'] spec.authors = ['Firespring'] spec.email = ['opensource@firespring.com'] spec.homepage = 'https://github.com/firespring/hedgelog' spec.summary = 'A structured JSON logger for Ruby' spec.description = 'An opinionated/structured JSON logger for Ruby' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hedgelog-0.2.1.alpha.4 | hedgelog.gemspec |