Update Gemfile and gemspec file

master
Guillaume DOTT 2012-12-19 15:04:40 +01:00
parent 258a5b7c52
commit d6820f3527
3 changed files with 23 additions and 15 deletions

View File

@ -1,6 +1,4 @@
# A sample Gemfile
source "http://rubygems.org" source "http://rubygems.org"
gem "rspec" # Specify your gem's dependencies in project-honeypot.gemspec
gem "flexmock" gemspec
gem "net-dns"

View File

@ -0,0 +1,3 @@
module ProjectHoneypot
VERSION = "0.1.1"
end

View File

@ -1,16 +1,23 @@
# -*- 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| Gem::Specification.new do |s|
s.name = %q{project-honeypot} s.name = %q{project-honeypot}
s.version = "0.1.1" s.version = ProjectHoneypot::VERSION
s.date = %q{2010-10-22} s.authors = ["Charles Max Wood", "Guillaume DOTT"]
s.authors = ["Charles Max Wood"] s.email = ["chuck@teachmetocode.com", "guillaume+github@dott.fr"]
s.email = %q{chuck@teachmetocode.com}
s.summary = %q{Project-Honeypot provides a programatic interface to the Project Honeypot services.} s.summary = %q{Project-Honeypot provides a programatic interface to the Project Honeypot services.}
s.homepage = %q{http://teachmetocode.com/}
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} 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}
s.add_dependency('net-dns') s.homepage = ""
s.files = [ "README.rdoc",
"MIT-LICENSE", s.files = `git ls-files`.split($/)
"lib/project-honeypot.rb", s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
"lib/project_honeypot/url.rb", s.test_files = s.files.grep(%r{^(test|spec|features)/})
"lib/project_honeypot/base.rb"]
s.add_development_dependency 'rspec'
s.add_development_dependency 'flexmock'
s.add_runtime_dependency 'net-dns'
end end