File: spider.gemspec

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

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

Gem::Specification.new do |s|
  s.author = 'John Nagro'
  s.email = 'john.nagro@gmail.com'
  s.license = 'MIT'
  s.homepage = 'https://github.com/johnnagro/spider'
  s.required_ruby_version = '>= 2.5'
  s.name = 'spider'
  s.summary = 'A Web spidering library'
  s.files = Dir['lib/**/*'] + ['VERSION']
  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.metadata["source_code_uri"] = s.homepage
  s.metadata["changelog_uri"] = "#{s.homepage}/blob/main/CHANGELOG.md"
  s.version = Spider::VERSION
end