-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyNetworking.podspec
More file actions
57 lines (26 loc) · 1.13 KB
/
EasyNetworking.podspec
File metadata and controls
57 lines (26 loc) · 1.13 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Pod::Spec.new do |s|
s.name = "EasyNetworking"
s.version = "1.0.3"
s.summary = "base on AFNetworking and ReactiveCocoa"
s.description = <<-DESC
一个关于AFNetworking的类别
DESC
s.homepage = "https://github.com/lforme/EasyNetworking.git"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "王宏洋" => "lforme@163.com" }
# Or just: s.author = "王宏洋"
# s.authors = { "王宏洋" => "lforme@163.com" }
# s.social_media_url = "http://twitter.com/王宏洋"
# s.platform = :ios
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/lforme/EasyNetworking.git", :tag => "#{s.version}" }
s.source_files = "EasyNetworking/NetworkingTool/**/*.{h,m}"
# s.exclude_files = "Classes/Exclude"
# s.public_header_files = "EasyNetworking/NetworkingTool/EasyNetworking.h"
# s.framework = "SomeFramework"
# s.frameworks = "AFNetworking", "ReactiveObjC"
s.requires_arc = true
s.dependency "AFNetworking"
s.dependency "ReactiveObjC"
end