File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ Pod ::Spec . new do |s |
2+ s . name = 'Rex'
3+ s . module_name = 'Rex'
4+ s . version = '0.9.0-RC.2'
5+ s . summary = 'ReactiveCocoa Extensions'
6+
7+ s . description = <<-DESC
8+ Extensions for ReactiveCocoa that may not fit in the core framework.
9+ DESC
10+
11+ s . homepage = 'https://github.com/neilpa/Rex'
12+ s . license = 'MIT'
13+
14+ s . author = { 'Neil Pankey' => '[email protected] ' } 15+
16+ s . ios . deployment_target = '8.0'
17+ s . osx . deployment_target = '10.10'
18+ s . watchos . deployment_target = '2.0'
19+ s . tvos . deployment_target = '9.0'
20+
21+ s . source = { :git => 'https://github.com/neilpa/Rex.git' , :tag => '0.9.0-RC.2' }
22+ s . dependency 'ReactiveCocoa' , '4.0.0-RC.2'
23+ s . ios . framework = 'UIKit'
24+ s . osx . framework = 'AppKit'
25+
26+ s . source_files = 'Source/**/*.swift'
27+ s . ios . exclude_files = 'Source/AppKit/*'
28+ s . tvos . exclude_files = 'Source/AppKit/*'
29+ s . watchos . exclude_files = 'Source/AppKit/*' , 'Source/UIKit/*'
30+ s . osx . exclude_files = 'Source/UIKit/*'
31+
32+ end
You can’t perform that action at this time.
0 commit comments