-
Notifications
You must be signed in to change notification settings - Fork 26
/
libHN.podspec
21 lines (21 loc) · 1014 Bytes
/
libHN.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "libHN"
s.version = "4.1.0"
s.summary = "The definitive Objective-C library for adding HackerNews to your iOS/Mac app."
s.description = <<-DESC
The definitive Cocoa framework for adding HackerNews to your iOS/Mac app.
This mini library includes features such as grabbing Posts (including
filtering by Top, Ask, New, Jobs, Best), Comments, Logging in, and
Submitting new posts/comments!
DESC
s.homepage = "https://github.com/bennyguitar/libHN"
s.license = { :type => 'MIT', :file => 'License' }
s.author = { "Ben Gordon" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/bennyguitar/libHN.git", :tag => s.version }
s.source_files = 'Source/*.{h,m}'
s.resources = 'Source/*.json'
s.public_header_files = 'Source/*.h'
s.requires_arc = true
end