Skip to content

Commit fab7c7b

Browse files
committed
Merge pull request #81 from bjarkehs/podspec
Add Podspec
2 parents 42e68a9 + 37ebb40 commit fab7c7b

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Rex.podspec

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)