forked from mhuusko5/Podspecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveObjC.podspec
More file actions
37 lines (29 loc) · 1.93 KB
/
ReactiveObjC.podspec
File metadata and controls
37 lines (29 loc) · 1.93 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
34
35
36
37
Pod::Spec.new do |s|
s.name = 'ReactiveObjC'
s.version = '1.0.0-alpha.1'
s.summary = 'A framework for composing and transforming streams of values over time.'
s.description = 'ReactiveObjC (formally ReactiveCocoa or RAC) is an Objective-C framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values.'
s.author = 'ReactiveCocoa'
s.homepage = 'https://github.com/ReactiveCocoa/ReactiveObjC'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.source = {
:git => 'https://github.com/ReactiveCocoa/ReactiveObjC.git',
:commit => '70b87eec14119315a220ef9f63923d8a4739f009'
# :tag => 'v#{s.version}'
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.framework = 'Foundation'
s.source_files = 'ReactiveObjC/**/*.{d,h,m}'
s.private_header_files = [
'ReactiveObjC/**/*Private.h',
'ReactiveObjC/**/*EXTRuntimeExtensions.h',
'ReactiveObjC/**/RACEmpty*.h'
]
s.ios.exclude_files = 'ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable}*'
s.osx.exclude_files = 'ReactiveObjC/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK}*'
s.tvos.exclude_files = 'ReactiveObjC/**/*{AppKit,NSControl,NSText,NSTable,UIActionSheet,UIAlertView,UIDatePicker,UIImagePicker,UIRefreshControl,UISlider,UIStepper,UISwitch,MK}*'
s.watchos.exclude_files = 'ReactiveObjC/**/*{UIActionSheet,UIAlertView,UIBarButtonItem,UIButton,UICollectionReusableView,UIControl,UIDatePicker,UIGestureRecognizer,UIImagePicker,UIRefreshControl,UISegmentedControl,UISlider,UIStepper,UISwitch,UITableViewCell,UITableViewHeaderFooterView,UIText,MK,AppKit,NSControl,NSText,NSTable,NSURLConnection}*'
end