forked from Eleme-IMF/DRDNetworking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDRDNetworking.podspec
21 lines (20 loc) · 1023 Bytes
/
DRDNetworking.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 = "DRDNetworking"
s.version = "0.6.1"
s.summary = "DRDNetworking is a networking sdk started by IMF."
s.description = <<-DESC
Name story:
Durandal is the sword of Charlemagne's paladinRoland in the literary series known as the Matter of France.(From Wiki)
Our Durandal:
It's a easy way to handle remote api call. Currently, in Durandal we are using AFNetworking Session Manager.
DESC
s.homepage = "https://github.com/Eleme-IMF/DRDNetworking"
s.license = 'MIT'
s.author = { "cendywang" => "[email protected]" }
s.source = { :git => "https://github.com/Eleme-IMF/DRDNetworking.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'AFNetworking', '~> 3.0.0'
end