Sha256: 927a554e17e1dbae3635b553965d25077c38983672039ba7f52394d161feb46e

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

require File.expand_path 'lib/version', __dir__
Gem::Specification.new do |s|
  s.name = 'hit_counter'
  s.version = HitCounter::VERSION.dup
  s.summary = 'Self-hosted Ruby version of that old 90s chestnut, the web-site hit counter.'
  s.description = 'Why roast this chestnut by that open fire, you ask? Cause '\
    'thousands and thousands of Internet vets are still using the one we '\
    "wrote in PHP eons ago and we don't want to be squandering any incidental "\
    "Google juice, that's why."
  s.homepage = 'https://github.com/FoveaCentral/hit_counter'
  s.authors = ['Roderick Monje']
  s.cert_chain = ['certs/ivanoblomov.pem']
  s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME =~ /gem\z/

  s.add_runtime_dependency 'addressable', '~> 2'
  s.add_runtime_dependency 'bson_ext', '~> 1'
  s.add_runtime_dependency 'mongoid', '~> 7'
  s.add_runtime_dependency 'rmagick', '>= 2', '< 5'

  s.files         = `git ls-files`.split "\n"
  s.require_paths = ['lib']
  s.required_ruby_version = '>= 2.5'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hit_counter-0.1.7 hit_counter.gemspec
hit_counter-0.1.6 hit_counter.gemspec
hit_counter-0.1.5 hit_counter.gemspec