-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLAFramework.podspec
More file actions
93 lines (69 loc) · 2.85 KB
/
Copy pathLAFramework.podspec
File metadata and controls
93 lines (69 loc) · 2.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# Be sure to run `pod lib lint LAFramework.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LAFramework'
s.version = '0.1.2'
s.summary = 'iOS Base Framework.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
This is a base framwork that constans Networking,Monitor,Cache,Mediator...
DESC
s.homepage = 'https://github.com/huhk345/LAFramework'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'LakeR' => 'njlaker@gmail.com' }
s.source = { :git => 'https://github.com/huhk345/LAFramework.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.prefix_header_file = 'LAFramework/Classes/LAPrefix.pch'
s.ios.deployment_target = '8.0'
s.source_files = 'LAFramework/Classes/**/*'
s.exclude_files = 'LAFramework/Classes/LAPrefix.pch'
# s.resource_bundles = {
# 'LAFramework' => ['LAFramework/LAFramework/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'AFNetworking', '~> 3.1.0'
s.dependency 'ReactiveObjC', '~> 1.0.1'
s.dependency 'CocoaLumberjack', '~>2.3.0'
s.preserve_paths = 'LAFramework/runscript.rb'
s.subspec 'LADataCategory' do |sp|
sp.source_files = 'LADataCategory/Classes/**/*'
sp.libraries = 'z'
end
s.subspec 'LAJsonKit' do |sp|
sp.source_files = 'LAJsonKit/Classes/**/*'
sp.public_header_files = 'LAJsonKit/Classes/**/*.h'
sp.preserve_paths = 'LAJsonKit/Scripts/**/*'
end
s.subspec 'LAMediator' do |sp|
sp.source_files = 'LAMediator/Classes/**/*'
end
s.subspec 'LACache' do |sp|
sp.source_files = 'LACache/Classes/**/*'
sp.dependency 'LAFramework/LADataCategory'
end
s.subspec 'LAWebViewBridge' do |sp|
sp.source_files = 'LAWebViewBridge/Classes/**/*'
sp.dependency 'LAFramework/LACache'
end
s.subspec 'LASystemInfo' do |sp|
sp.source_files = 'LASystemInfo/Classes/**/*'
end
s.subspec 'LANetworking' do |sp|
sp.source_files = 'LANetworking/Classes/**/*'
sp.preserve_paths = 'LANetworking/Scripts/**/*'
sp.dependency 'LAFramework/LADataCategory'
sp.dependency 'LAFramework/LACache'
sp.dependency 'LAFramework/LAJsonKit'
end
end