diff --git a/LICENSE b/LICENSE index f0f0372..685e411 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016 Marin Todorov +Copyright (c) RxSwiftCommunity Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Pod/Classes/OSX/NSGestureRecognizer+Rx.swift b/Pod/Classes/OSX/NSGestureRecognizer+Rx.swift index 464b19e..fbab3c2 100644 --- a/Pod/Classes/OSX/NSGestureRecognizer+Rx.swift +++ b/Pod/Classes/OSX/NSGestureRecognizer+Rx.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Marin Todorov http://www.underplot.com +// Copyright (c) RxSwiftCommunity // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -40,6 +40,9 @@ private class GestureTarget { var handler: (()->Void)? } +// +// TODO: Make a PR to RxCocoa to add rx_event to NSGestureRecognizer and remove this file from this repo +// extension NSGestureRecognizer { /** diff --git a/Pod/Classes/OSX/NSView+RxGesture.swift b/Pod/Classes/OSX/NSView+RxGesture.swift index b85a184..73699b6 100644 --- a/Pod/Classes/OSX/NSView+RxGesture.swift +++ b/Pod/Classes/OSX/NSView+RxGesture.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Marin Todorov http://www.underplot.com +// Copyright (c) RxSwiftCommunity // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Pod/Classes/RxGesture.swift b/Pod/Classes/RxGesture.swift index 167635c..61173c5 100644 --- a/Pod/Classes/RxGesture.swift +++ b/Pod/Classes/RxGesture.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Marin Todorov http://www.underplot.com +// Copyright (c) RxSwiftCommunity // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Pod/Classes/iOS/UIView+RxGesture.swift b/Pod/Classes/iOS/UIView+RxGesture.swift index da85652..7b10d0e 100644 --- a/Pod/Classes/iOS/UIView+RxGesture.swift +++ b/Pod/Classes/iOS/UIView+RxGesture.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2016 Marin Todorov http://www.underplot.com +// Copyright (c) RxSwiftCommunity // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 936b3e9..5277b88 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,9 @@ pod "RxGesture" - defo add tests - make pr to rxcocoa to add native support for rx_event to `NSGestureRecognizer` and remove the implementation from this repo -## Author +## Thanks -Marin Todorov, [www.underplot.com](http://www.underplot.com) +Everyone in the RxSwift Slack channel 💯 ## License diff --git a/RxGesture.podspec b/RxGesture.podspec index ae8ee58..071b5e9 100644 --- a/RxGesture.podspec +++ b/RxGesture.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.name = "RxGesture" - s.version = "0.1.4" + s.version = "0.1.5" s.summary = "RxSwfit reactive wrapper for view gestures." s.description = <<-DESC @@ -14,10 +14,10 @@ Pod::Spec.new do |s| combine taps, presses, or swipes in any direction DESC - s.homepage = "https://github.com/icanzilb/RxGesture" + s.homepage = "https://github.com/RxSwiftCommunity/RxGesture" s.license = 'MIT' s.author = { "Marin Todorov" => "touch-code-magazine@underplot.com" } - s.source = { :git => "https://github.com/icanzilb/RxGesture.git", :tag => s.version.to_s } + s.source = { :git => "https://github.com/RxSwiftCommunity/RxGesture.git", :tag => s.version.to_s } s.requires_arc = true