Sha256: 84bb6fc28318a63100254276f847486b871a81665e41a5df86f13c05484b4208

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name          = 'rails_log_parser'
  spec.version       = '0.0.10'
  spec.authors       = ['Georg Limbach']
  spec.email         = ['georg.limbach@lichtbit.com']

  spec.summary       = 'Simple and fast analysing of default rails logs'
  spec.description   = 'If you want to get an email with errors and fatal log lines you can use this gem.'
  spec.homepage      = 'https://github.com/Lichtbit/rails_log_parser'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/Lichtbit/rails_log_parser'

  # 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.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.require_paths = ['lib']

  spec.add_dependency 'enumerize', '~> 2.4'
  spec.add_dependency 'json', '>= 2.0'
  spec.add_development_dependency 'rspec', '>= 3.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_log_parser-0.0.10 rails_log_parser.gemspec