forked from RxSwiftCommunity/RxCoreMotion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxCoreMotion.podspec
More file actions
27 lines (22 loc) · 944 Bytes
/
RxCoreMotion.podspec
File metadata and controls
27 lines (22 loc) · 944 Bytes
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
Pod::Spec.new do |s|
s.name = 'RxCoreMotion'
s.version = '1.3.0'
s.summary = 'An Rx wrapper of Apple iOS CoreMotion framework'
s.description = <<-DESC
This is an Rx extension that provides an easy and straight-forward way
to use Apple iOS CoreMotion responses as Observables
DESC
s.homepage = 'https://github.com/RxSwiftCommunity/RxCoreMotion'
s.license = 'MIT'
s.author = { 'Carlos García' => 'carlosypunto@gmail.com' }
s.source = {
:git => "https://github.com/RxSwiftCommunity/RxCoreMotion.git",
:tag => s.version.to_s
}
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Pod/Classes/*.swift'
s.frameworks = 'Foundation', 'CoreMotion'
s.dependency 'RxSwift', '~> 4.0'
end