-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReactantLiveUI.podspec
39 lines (36 loc) · 1.34 KB
/
ReactantLiveUI.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
39
Pod::Spec.new do |spec|
spec.name = 'ReactantLiveUI'
spec.version = '0.5.0'
spec.summary = 'Live reloading of ReactantUI XML files.'
spec.description = <<-DESC
ReactantLiveUI adds live reloading capabilities to ReactantUI.
DESC
spec.homepage = 'http://reactant.tech'
spec.license = 'MIT'
spec.author = {
'Tadeas Kriz' => '[email protected]',
'Matous Hybl' => '[email protected]',
'Filip Dolnik' => '[email protected]'
}
spec.source = {
:git => 'https://github.com/Brightify/ReactantUI.git',
:tag => spec.version.to_s
}
spec.social_media_url = 'https://twitter.com/BrightifyOrg'
spec.requires_arc = true
spec.ios.deployment_target = '10.0'
spec.tvos.deployment_target = '10.0'
spec.swift_version = '5.1'
spec.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS' => '-D ReactantRuntime'
}
spec.dependency 'Reactant', '> 1.3'
spec.dependency 'Reactant/TableView', '> 1.3'
spec.dependency 'Reactant/FallbackSafeAreaInsets', '> 1.3'
spec.dependency 'RxCocoa'
spec.source_files = [
'Sources/Common/**/*.swift',
'Sources/Live/**/*.{swift,h,m}',
'Sources/Tokenizer/**/*.swift',
]
end