-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDZReadability.podspec
31 lines (28 loc) · 1.4 KB
/
DZReadability.podspec
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
31
#
# Be sure to run `pod lib lint DZReadability.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "DZReadability"
s.version = "0.2.3"
s.summary = "iOS and OSX adoption of Readability algorithm which clears HTML"
s.description = <<-DESC
Adoption of Readability algorithm which works on iOS and OSX and is capable of clearing the messy HTML document (e.g. site) into nice and readable page.
Rework of GGReadabilityParser found here: https://github.com/curthard89/COCOA-Stuff/tree/master/GGReadabilityParser
DESC
s.homepage = "https://github.com/DZamataev/DZReadability"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Denis Zamataev" => "[email protected]" }
s.source = { :git => "https://github.com/DZamataev/DZReadability.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dzamataev'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.dependency 'HTMLReader'
end