-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFeedlyKit.podspec
More file actions
22 lines (20 loc) · 851 Bytes
/
FeedlyKit.podspec
File metadata and controls
22 lines (20 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
Pod::Spec.new do |s|
url = "https://github.com/kumabook/FeedlyKit"
source_url = "#{url}.git"
s.name = "FeedlyKit"
s.version = "1.5.0"
s.summary = "Feedly Cloud API client library in Swift"
s.homepage = url
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hiroki Kumamoto" => "kumabook@live.jp" }
s.social_media_url = "http://twitter.com/kumabook"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.source = { git: source_url, tag: s.version }
s.framework = 'Foundation'
s.source_files = "Source/*.swift"
s.exclude_files = "Spec/*"
s.dependency "SwiftyJSON"
s.dependency "Alamofire", "~> 4.5"
end