-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreadability_parser.gemspec
30 lines (25 loc) · 1.26 KB
/
readability_parser.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
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'readability_parser/version'
Gem::Specification.new do |gem|
gem.name = "readability_parser"
gem.version = ReadabilityParser::VERSION
gem.authors = ["Philippe Dionne"]
gem.description = %q{A tiny ruby wrapper for Readability's content parser api}
gem.summary = %q{Interact with the article parsing featureset of Readability. This means grabbing an article's content based on a URL.}
gem.homepage = "https://github.com/phildionne/readability_parser"
gem.licenses = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.cert_chain = ['certs/gem-public_cert.pem']
gem.signing_key = File.expand_path("~/.gem/gem-private_key.pem") if $0 =~ /gem\z/
gem.add_dependency "faraday", "~> 0.9"
gem.add_dependency "faraday_middleware", "~> 0.9"
gem.add_dependency "hashie", "~> 3.2"
gem.add_dependency "multi_xml", "~> 0.5"
gem.add_dependency "multi_json", "~> 1.10"
end