forked from shyambhat/InstagramKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstagramKit.podspec
24 lines (21 loc) · 917 Bytes
/
InstagramKit.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
Pod::Spec.new do |s|
s.name = 'InstagramKit'
s.version = '3.5.0'
s.summary = 'Instagram iOS SDK.'
s.description = <<-DESC
* An extensive blocks-based Objective C wrapper for the Instagram API.
* Built atop AFNetworking, it rips through the JSON asynchronously to give you ready-to-use Instagram model objects.
* AFNetworking 2 ready.
* Support for paginated requests.
DESC
s.homepage = 'https://github.com/shyambhat/InstagramKit'
s.license = 'MIT'
s.author = { "Shyam Bhat" => "[email protected]" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/shyambhat/InstagramKit.git", :tag => '3.5.0' }
s.source_files = 'InstagramKit', 'InstagramKit/**/*.{h,m}'
s.resource = 'InstagramKit/InstagramKit.plist'
s.exclude_files = 'InstagramKitDemo'
s.requires_arc = true
s.dependency 'AFNetworking', '~>2.0'
end