forked from phildionne/readability_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadability_parser.gemspec
More file actions
30 lines (25 loc) · 1.28 KB
/
readability_parser.gemspec
File metadata and controls
30 lines (25 loc) · 1.28 KB
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.email = ["[email protected]"]
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/pdionne-gem-public_cert.pem']
gem.signing_key = File.expand_path("~/.gem/pdionne-gem-private_key.pem") if $0 =~ /gem\z/
gem.add_dependency "faraday", "~> 0.8.4"
gem.add_dependency "faraday_middleware", "~> 0.9.0"
gem.add_dependency "hashie", "~> 1.2.0"
gem.add_dependency "multi_xml", "~> 0.5.2"
gem.add_dependency "multi_json", "~> 1.7.2"
end