-
Notifications
You must be signed in to change notification settings - Fork 301
/
CTNetworking.podspec
36 lines (24 loc) · 1.2 KB
/
CTNetworking.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
25
26
27
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "CTNetworking"
s.version = "1.0.0"
s.summary = "CTNetworking is an iOS discrete HTTP API calling framework based on AFNetworking."
s.description = <<-DESC
CTNetworking is an iOS discrete HTTP API calling framework based on AFNetworking,this is CTNetworking
DESC
s.homepage = "https://github.com/casatwy/RTNetworking"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "CasaTaloyum" => "[email protected]" }
s.platform = :ios, "8.0"
#s.source = { :git => "https://github.com/Corotata/RTNetworking.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/Corotata/RTNetworking.git"}
s.source_files = "CTNetworking/CTNetworking/**/*.{h,m}"
#s.public_header_files = "CTNetworking/CTNetworking/**/*.h"
s.resource = "CTNetworking/CTNetworking/**/*.plist"
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/AFNetworking" }
s.dependency "AFNetworking", "~> 3.1.0"
end