-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMSAppModuleKit.podspec
36 lines (29 loc) · 1.19 KB
/
MSAppModuleKit.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
#
# Be sure to run `pod lib lint MSAppModule.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 = "MSAppModuleKit"
s.version = "0.0.3"
s.summary = "模块加载器 MSAppModuleKit."
s.description = <<-DESC
MSAppModuleKit 负责模块的加载 以及模块的接口
1. 应用模块实现MSAppModule协议
2. 每一个模块扩展MSAppSettings协议
3. 应用的AppSettings实现所需要加载的模块的AppSettings协议
4. AppModuleController加载设置下发到
5. AppModuleController加载模块
DESC
s.homepage = "http://ph.benemind.com/diffusion/MODULE"
s.license = 'MIT'
s.author = { "Ryan Wang" => "wanglun02@gmail.com" }
s.source = { :git => "http://ph.benemind.com/diffusion/MODULE/MSAppModuleKit.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'JLRoutes'
end