forked from alkimake/AFeedly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAFeedly.podspec
More file actions
22 lines (20 loc) · 844 Bytes
/
AFeedly.podspec
File metadata and controls
22 lines (20 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "AFeedly"
s.version = "0.0.1"
s.summary = "Feedly API Client"
s.description = <<-DESC
A client connecting to Feedly API for authenticating and fetching all feeds, tags and etc.
DESC
s.homepage = "https://github.com/alkimake/AFeedly"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Alkim Gozen" => "alkimake@gmail.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/alkimake/AFeedly.git", :tag => s.version.to_s }
s.source_files = 'Source/**/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.0'
s.dependency 'LROAuth2Client', '~> 0.0'
s.dependency 'JSONModel', '~> 0.13'
s.dependency 'hpple', '~> 0.2'
end