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'
2010-10-20 21:32:24 +02:00
Gem :: Specification . new do | s |
2013-01-04 10:05:37 +01:00
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 " ]
2010-10-20 21:32:24 +02:00
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'
2013-01-15 09:17:12 +01:00
s . add_runtime_dependency 'net-dns' , '~> 0.7.1'
2010-10-28 06:13:06 +02:00
end