Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathRex.podspec
More file actions
Latest commit
33 lines (26 loc) · 1.11 KB
/
Copy pathRex.podspec
File metadata and controls
33 lines (26 loc) · 1.11 KB
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
Pod::Spec.newdo |s|
s.name='Rex'
s.module_name='Rex'
s.version='0.10.0'
s.summary='ReactiveCocoa Extensions'
s.description=<<-DESC
Extensions for ReactiveCocoa that may not fit in the core framework.
DESC
s.homepage='https://github.com/neilpa/Rex'
s.license='MIT'
s.author={'Neil Pankey'=>'npankey@gmail.com'}
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.10'
s.watchos.deployment_target='2.0'
s.tvos.deployment_target='9.0'
s.source={:git=>'https://github.com/neilpa/Rex.git',:tag=>s.version}
s.dependency'ReactiveCocoa','~> 4.1'
s.ios.framework='UIKit'
s.tvos.framework='UIKit'
s.osx.framework='AppKit'
s.source_files='Source/**/*.swift'
s.ios.exclude_files='Source/AppKit/*'
s.tvos.exclude_files='Source/AppKit/*','Source/UIKit/UIDatePicker.swift','Source/UIKit/UISwitch.swift','Source/UIKit/UISegmentedControl.swift'
s.watchos.exclude_files='Source/AppKit/*','Source/UIKit/*'
s.osx.exclude_files='Source/UIKit/*'
end