forked from delphaber/robotstxt-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobotstxt-parser.gemspec
More file actions
19 lines (18 loc) · 925 Bytes
/
robotstxt-parser.gemspec
File metadata and controls
19 lines (18 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |gem|
gem.name = "robotstxt-parser"
gem.version = "0.1.1"
gem.authors = ["Garen Torikian"]
gem.email = ["gjtorikian@gmail.com"]
gem.description = %q{Robotstxt-Parser allows you to the check the accessibility of URLs and get other data. Full support for the robots.txt RFC, wildcards and Sitemap: rules.}
gem.summary = %q{Robotstxt-parser is an Ruby robots.txt file parser.}
gem.homepage = "https://github.com/gjtorikian/robotstxt-parser"
gem.license = "MIT"
gem.files = `git ls-files`.split($/).select {|f| f.match(%r{^(lib)/}) }
gem.test_files = gem.files.grep(%r{^(test)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "webmock", "~> 2.3"
end