diff --git a/Rakefile b/Rakefile index 33f93a3..2bc3aba 100644 --- a/Rakefile +++ b/Rakefile @@ -1,19 +1,6 @@ -require 'jeweler' require 'rake/testtask' Rake::TestTask.new do |task| task.test_files = FileList['test/test_*.rb'] end - -Jeweler::Tasks.new do |gem| - gem.name = "rack-honeypot" - gem.summary = %Q{Middleware that functions as a spambot trap.} - gem.description = %Q{This middleware acts as a spam trap. It inserts, into every outputted
, a text field that a spambot will really want to fill in, but is actually not used by the app. The field is hidden to humans via CSS, and includes a warning label for screenreading software.} - gem.email = "daniel.schierbeck@gmail.com" - gem.homepage = "http://github.com/dasch/rack-honeypot" - gem.authors = ["Luigi Montanez", "Luc Castera", "Daniel Schierbeck"] - gem.add_dependency('rack') - gem.add_dependency('unindentable', '0.0.4') -end -Jeweler::RubygemsDotOrgTasks.new