Sha256: b5b86089585368f3a996caf533a32ad8094c578b5e5dc0162cc37214a9c49108
Contents?: true
Size: 1.05 KB
Versions: 1
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', '< 9' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hit_counter-0.1.8 | hit_counter.gemspec |