project_honeypot/project_honeypot.gemspec

24 lines
1.1 KiB
Ruby
Raw Permalink Normal View History

2012-12-19 15:04:40 +01:00
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'project_honeypot/version'
Gem::Specification.new do |s|
s.name = %q{project_honeypot}
2012-12-19 15:04:40 +01:00
s.version = ProjectHoneypot::VERSION
s.authors = ["Charles Max Wood", "Guillaume DOTT"]
s.email = ["chuck@teachmetocode.com", "guillaume+github@dott.fr"]
s.summary = %q{Project-Honeypot provides a programatic interface to the Project Honeypot services.}
2010-10-22 23:17:46 +02:00
s.description = %q{Project-Honeypot provides a programatic interface to the Project Honeypot services. It can be used to identify spammers, bogus commenters, and harvesters. You will need a FREE api key from http://projecthoneypot.org}
2013-01-20 01:30:00 +01:00
s.homepage = "https://github.com/gdott9/project_honeypot"
2012-12-19 15:04:40 +01:00
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.add_development_dependency 'rspec'
s.add_development_dependency 'flexmock'
s.add_runtime_dependency 'net-dns', '~> 0.7.1'
2010-10-28 06:13:06 +02:00
end