-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathWebHere.podspec
More file actions
26 lines (21 loc) · 817 Bytes
/
WebHere.podspec
File metadata and controls
26 lines (21 loc) · 817 Bytes
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
Pod::Spec.new do |s|
s.name = 'WebHere'
s.version = '1.0.1'
s.summary = 'HTML scraping for Objective-C.'
s.description = <<-DESC
WebHere is an Objective-C framework for web scraping,
packaged for iOS 8+ and OSX 10.10+ platforms.
Briefly put, web scraping is parsing of a website and extraction
of data from the HTML pages contained in it.
DESC
s.homepage = 'https://github.com/rdlopes/WebHere'
s.license = 'MIT'
s.author = { 'Rui Lopes' => 'rui.d.lopes@me.com' }
s.source = { :git => "https://github.com/rdlopes/WebHere.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.source_files = 'WebHere/Classes/**/*'
s.dependency 'AFNetworking'
s.dependency 'GDataXML-HTML'
end