-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathIMXEventBus.podspec
More file actions
28 lines (25 loc) · 961 Bytes
/
IMXEventBus.podspec
File metadata and controls
28 lines (25 loc) · 961 Bytes
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
Pod::Spec.new do |s|
s.name = "IMXEventBus"
s.version = "1.0.0"
s.summary = "a delightful EventBus for Object-C"
s.license = { :type => "MIT", :file => "LICENSE" }
s.homepage = "https://github.com/PanZhow/IMXEventBus.git"
s.author = { "zhoupanpan" => "2331838272@qq.com" }
s.source = { :git => "https://github.com/PanZhow/IMXEventBus.git", :tag => "#{s.version}" }
s.requires_arc = true
s.public_header_files = [
'IMXEventBus/IMXEventBus/*{h}',
'IMXEventBus/IMXEventBus/Debug/*{h}',
'IMXEventBus/IMXEventBus/Action/*{h}',
'IMXEventBus/IMXEventBus/Objs/*{h}',
'IMXEventBus/IMXEventBus/Event/*{h}',
]
s.source_files = [
'IMXEventBus/IMXEventBus/*{h,m}',
'IMXEventBus/IMXEventBus/Debug/*{h,m}',
'IMXEventBus/IMXEventBus/Action/*{h,m}',
'IMXEventBus/IMXEventBus/Objs/*{h,m}',
'IMXEventBus/IMXEventBus/Event/*{h,m}',
]
s.platform = :ios, '8.0'
end