bdurand/lumberjack_redis_device

View on GitHub
lumberjack_redis_device.gemspec

Summary

Maintainability
Test Coverage
Gem::Specification.new do |spec|
  spec.name = "lumberjack_redis_device"
  spec.version = File.read(File.join(__dir__, "VERSION")).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "A logging device for the lumberjack gem that writes log entries as JSON documentspec."
  spec.homepage = "https://github.com/bdurand/lumberjack_redis_device"
  spec.license = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  ignore_files = %w[
    .gitignore
    .travis.yml
    Appraisals
    Gemfile
    Gemfile.lock
    Rakefile
    gemfiles/
    spec/
  ]
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } }
  end

  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">=2.4"

  spec.add_dependency "lumberjack", ">=1.1"
  spec.add_dependency "multi_json"
  spec.add_dependency "redis"

  spec.add_development_dependency "bundler"
end