File: spider.gemspec

package info (click to toggle)
ruby-spider 0.5.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 824; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'

require File.expand_path('../lib/spider', __FILE__)

spec = Gem::Specification.new do |s|
  s.author = 'John Nagro'
  s.email = 'john.nagro@gmail.com'
  s.license = 'MIT'
  s.has_rdoc = true
  s.homepage = 'https://github.com/johnnagro/spider'
  s.name = 'spider'
  s.rubyforge_project = 'spider'
  s.summary = 'A Web spidering library'
  s.files = Dir['**/*'].delete_if { |f| f =~ /(cvs|gem|svn)$/i }
  s.require_path = 'lib'
  s.description = <<-EOF
A Web spidering library: handles robots.txt, scraping, finding more
links, and doing it all over again.
EOF
  s.version = Spider::VERSION
end