forked from assaf/scrapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrapi.gemspec
23 lines (21 loc) · 998 Bytes
/
scrapi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |spec|
spec.name = 'scrapi'
spec.version = '2.0.0'
spec.summary = "scrAPI toolkit for Ruby. Uses CSS selectors to write easy, maintainable HTML scraping rules."
spec.description = <<-EOF
scrAPI is an HTML scraping toolkit for Ruby. It uses CSS selectors to write easy, maintainable scraping rules to select, extract and store data from HTML content.
EOF
spec.author = 'Assaf Arkin'
spec.email = '[email protected]'
spec.homepage = "http://github.com/assaf/scrapi"
spec.rubyforge_project = 'scrapi'
spec.files = Dir['{test,lib}/**/*', 'README.rdoc', 'CHANGELOG', 'Rakefile', 'MIT-LICENSE']
spec.require_path = 'lib'
spec.autorequire = 'scrapi.rb'
spec.requirements << 'Tidy_ffi'
spec.required_ruby_version = '>= 1.9.1'
spec.has_rdoc = true
spec.rdoc_options << '--main' << 'README.rdoc' << '--title' << "scrAPI toolkit for Ruby" << '--line-numbers'
spec.extra_rdoc_files = ['README.rdoc']
spec.add_dependency 'tidy_ffi', '>=0.1.2'
end