-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRxMotionKit.podspec
20 lines (17 loc) · 946 Bytes
/
RxMotionKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'RxMotionKit'
s.version = '0.7.0'
s.summary = 'RxMotionKit - reactive motion sensors managing library 🏃'
s.description = <<-DESC
RxMotionKit is a reactive motion sensors managing library for CoreMotion iOS framework written using RxSwift 🏃
DESC
s.author = { 'Robert Sobolewski' => '[email protected]' }
s.social_media_url = 'https://twitter.com/robsobolewski'
s.homepage = 'https://github.com/rsobolewski/RxMotionKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/rsobolewski/RxMotionKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Sources/RxMotionKit/*.swift'
s.frameworks = 'Foundation', 'CoreMotion'
s.dependency 'RxSwift', '~> 3.0'
end