-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrhack.gemspec
24 lines (20 loc) · 1.09 KB
/
rhack.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rhack/version'
Gem::Specification.new do |spec|
spec.name = "rhack"
spec.version = RHACK::VERSION
spec.authors = ["Sergey Baev"]
spec.email = ["[email protected]"]
spec.description = %q{RHACK is Ruby Http ACcess Kit: curl-based web-client framework created for developing web-scrapers/bots.\n\nFeatures:\nAsynchronous, still EventMachine independent\nFast as on simple queries as on high load\n3 levels of flexible configuration\nWeb-client abstraction for creating scrapers included}
spec.summary = %q{Curl-based web-client framework created for developing web-scrapers/bots}
spec.homepage = "https://github.com/tinbka/rhack"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.require_paths = ["lib"]
#spec.add_runtime_dependency "redis"
spec.add_runtime_dependency "rmtools", "~> 2.4"
spec.add_runtime_dependency "libxml-ruby", "~> 2.7"
spec.extensions << 'ext/curb/extconf.rb'
end