Sha256: ea5ec8cf39ad6cb8280133916fe2d3fdd1f475fa140114b46fe57ef750a47e00

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

require_relative 'version'

Gem::Specification.new do |spec|
  spec.name          = 'log-analyser'
  spec.version       = VERSION
  spec.authors       = ['Dan Mazzei']
  spec.email         = ['danielmazzei@gmail.com']

  spec.summary       = 'Log reader and data aggregator for pageviews information.'
  spec.description   = 'Log reader and data aggregator for pageviews information.'
  spec.homepage      = 'https://github.com/DMazzei/log-analyser'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 2.7')

  # spec.metadata['allowed_push_host'] = "'TODO: Set to 'http://mygemserver.com''"

  spec.metadata['homepage_uri'] = spec.homepage
  # spec.metadata['source_code_uri'] = "'TODO: Put your gem's public repo URL here.'"
  # spec.metadata['changelog_uri'] = "'TODO: Put your gem's CHANGELOG.md URL here.'"

  # 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         = %w(CHANGELOG Gemfile LICENSE.txt manifest README.md Rakefile lib/pageviews.rb lib/pageviews_log_aggregator.rb lib/parser.rb lib/unique_pageviews.rb log-analyser.gemspec version.rb)
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(/^exe\//) { |f| File.basename(f) }
  spec.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
log-analyser-0.1.1.pre.addgemtagrelease.20201106201808 log-analyser.gemspec