-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSanAndreas.podspec
31 lines (31 loc) · 1.11 KB
/
SanAndreas.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
Pod::Spec.new do |spec|
spec.name = 'SanAndreas'
spec.version = '0.3.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.osx.deployment_target = '10.11'
spec.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS' => '-D SanAndreas'
}
spec.dependency 'Reactant', '> 1.0'
spec.dependency 'RxCocoa'
spec.source_files = [
'Sources/Common/**/*.swift',
'Sources/Tokenizer/**/*.swift',
]
end