forked from alibaba/MBMvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMBMvc.podspec
38 lines (25 loc) · 963 Bytes
/
MBMvc.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
37
38
Pod::Spec.new do |s|
s.name = "MBMvc"
s.version = "1.0.0"
s.summary = "MBMvc is a Message Based MVC framework."
s.homepage = "https://github.com/alibaba/MBMvc"
s.license = { :type => 'GPL2' , :text => <<-LICENSE
(C) 2007-2013 Alibaba Group Holding Limited
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
LICENSE
}
s.author = { "文通" => "[email protected]" }
s.source = { :git => "https://github.com/alibaba/MBMvc.git", :tag => "1.0.0" }
s.platform = :ios, '6.1'
s.ios.deployment_target = '4.3'
s.source_files = 'MBMvc/**/*.{h,m}'
s.public_header_files = 'MBMvc/**/*.h'
s.requires_arc = true
s.prefix_header_contents = <<-EOS
#ifdef DEBUG
#define TBMB_DEBUG
#endif
EOS
end