Sha256: 2bb572a5009aa2878d57d04ff485f86237ae498a69cd96688c1246d63c67accc
Contents?: true
Size: 999 Bytes
Versions: 1
Compression:
Stored size: 999 Bytes
Contents
# -*- encoding: utf-8 -*- $:.unshift File.expand_path('../lib', __FILE__) require 'voight_kampff/version' Gem::Specification.new do |s| s.name = 'voight_kampff' s.summary = "Voight-Kampff bot detection" s.description = 'Voight-Kampff detects bots, spiders, crawlers and replicants' s.licenses = ['MIT'] s.author = "Adam Crownoble" s.email = "adam@codenoble.com" s.homepage = "https://github.com/biola/Voight-Kampff" # so that rubygems does not uses the actual object s.version = VoightKampff::VERSION.dup s.platform = Gem::Platform::RUBY.dup s.files = `git ls-files`.split("\n") s.files.reject! { |fn| fn.match(/\.travis.yml/) } s.test_files = `git ls-files -- {tests}/**/*`.split("\n") s.require_path = 'lib' s.add_dependency 'rack', ['>= 1.4', '< 3.0'] s.add_development_dependency 'combustion', '~> 1.1' s.add_development_dependency 'rails', '~> 5.2' s.add_development_dependency 'rspec-rails', '~> 3.8' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
voight_kampff-1.1.4 | voight_kampff.gemspec |