forked from geoffmacd/ImgurSession
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathImgurSession.podspec
More file actions
21 lines (20 loc) · 804 Bytes
/
ImgurSession.podspec
File metadata and controls
21 lines (20 loc) · 804 Bytes
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 |spec|
spec.name = 'ImgurSession'
spec.version = '1.3'
spec.license = {:type => 'MIT'}
spec.homepage = 'https://github.com/geoffmacd/ImgurSession'
spec.summary = 'Imgur API for Objective C'
spec.source = {:git => 'https://github.com/geoffmacd/ImgurSession.git', :tag => '1.3'}
spec.source_files = 'ImgurSession/**/*.{h,m}'
spec.author = { "Geoff MacDonald" => "geoffmacd@gmail.com" }
spec.framework = 'Foundation'
spec.dependency 'AFNetworking', '3.1.0'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = "10.9"
spec.requires_arc = true
spec.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import <AFNetworking/AFNetworking.h>
#endif /* __OBJC__*/
EOS
end