Last active
August 8, 2017 09:52
-
-
Save siuying/903c5f4f456c1e70ae58aaf9f1f0ae49 to your computer and use it in GitHub Desktop.
RxGesture for RxSwift 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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 = "1.0.1" | |
s.summary = "RxSwfit reactive wrapper for view gestures." | |
s.description = <<-DESC | |
RxSwfit 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" => "[email protected]", "Jérôme Alves" => "[email protected]" } | |
s.source = { :git => "https://github.com/RxSwiftCommunity/RxGesture.git", :tag => s.version.to_s } | |
s.requires_arc = true | |
s.ios.deployment_target = '8.3' | |
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', '>= 3.4' | |
s.dependency 'RxCocoa', '>= 3.4' | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment