forked from RxSwiftCommunity/RxGesture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxGesture.podspec
35 lines (26 loc) · 1.17 KB
/
RxGesture.podspec
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
#
# Be sure to run `pod lib lint RxGesture.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = "RxGesture"
s.version = "2.2.0"
s.summary = "RxSwift reactive wrapper for view gestures."
s.description = <<-DESC
RxSwift reactive wrapper for view gestures. It lets you to easily observe
a single gesture like tap or a custom group of gestures on a view. You can
combine taps, presses, or swipes in any direction
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxGesture"
s.license = 'MIT'
s.authors = { "Marin Todorov" => "touch-code-magazine@underplot.com", "Jérôme Alves" => "j.alves@me.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxGesture.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Pod/Classes/*.swift'
s.ios.source_files = 'Pod/Classes/iOS/*.swift'
s.osx.source_files = 'Pod/Classes/OSX/*.swift'
s.dependency 'RxSwift', '>= 6.5.0'
s.dependency 'RxCocoa', '>= 6.5.0'
end