This repository has been archived by the owner on Mar 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[General] Update to Swift 3.0 & new Permission
- Loading branch information
1 parent
f76b3c6
commit eaa9cb0
Showing
6 changed files
with
92 additions
and
40 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
use_frameworks! | ||
|
||
target 'RxPermission_Example' do | ||
pod 'RxPermission', :path => '../' | ||
pod 'Permission', :git => 'https://github.com/delba/Permission', :branch => 'swift-3.0' | ||
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift' | ||
pod 'RxPermission/Location', :path => '../' | ||
end | ||
|
||
# Hack to fix testability until cocoapods gets an update | ||
post_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
target.build_configurations.each do |config| | ||
if config.name == 'Debug' | ||
config.build_settings['ENABLE_TESTABILITY'] = 'YES' | ||
config.build_settings['SWIFT_VERSION'] = '3.0' | ||
end | ||
config.build_settings['ENABLE_TESTABILITY'] = 'YES' | ||
config.build_settings['SWIFT_VERSION'] = '3.0' | ||
end | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,27 @@ | ||
PODS: | ||
- Permission (1.5) | ||
- RxPermission (1.0.0-beta.1): | ||
- Permission | ||
- Permission/Core (2.0.3) | ||
- Permission/Location (2.0.3): | ||
- Permission/Core | ||
- RxPermission/Core (1.0.0): | ||
- Permission/Core | ||
- RxSwift | ||
- RxSwift (3.0.0-beta.1) | ||
- RxPermission/Location (1.0.0): | ||
- Permission/Location | ||
- RxPermission/Core | ||
- RxSwift (3.1.0) | ||
|
||
DEPENDENCIES: | ||
- Permission (from `https://github.com/delba/Permission`, branch `swift-3.0`) | ||
- RxPermission (from `../`) | ||
- RxSwift (from `https://github.com/ReactiveX/RxSwift`) | ||
- RxPermission/Location (from `../`) | ||
|
||
EXTERNAL SOURCES: | ||
Permission: | ||
:branch: swift-3.0 | ||
:git: https://github.com/delba/Permission | ||
RxPermission: | ||
:path: ../ | ||
RxSwift: | ||
:git: https://github.com/ReactiveX/RxSwift | ||
|
||
CHECKOUT OPTIONS: | ||
Permission: | ||
:commit: 118772cc410e53acc9ec156d309448cf5861c329 | ||
:git: https://github.com/delba/Permission | ||
RxSwift: | ||
:commit: cb5ae2f31f520c0e5d3f75a6c3637cde1c3bbbaa | ||
:git: https://github.com/ReactiveX/RxSwift | ||
:path: "../" | ||
|
||
SPEC CHECKSUMS: | ||
Permission: 2d9647f8b994a5faf7e1c5a40d4328fde158c2f2 | ||
RxPermission: 60c2b2f0e8dfbbef74232b4f824f99b33d8cbccd | ||
RxSwift: 0823e8d7969c23bfa9ddfb2afa4881e424a1a710 | ||
Permission: ef50195e97672de1946f98da7fd71fbfbcf9c23f | ||
RxPermission: e0cc69f4255b0e1c333a5da8d53cdb62cda8c9f3 | ||
RxSwift: 83ff553e7593fdfdcb2562933a64c0284dffdadc | ||
|
||
PODFILE CHECKSUM: 8ebf23ccfac9b28506cb118f8da61cee08612973 | ||
PODFILE CHECKSUM: 0866b303d616d0f589243606a355243292262a92 | ||
|
||
COCOAPODS: 1.0.1 |
This file contains 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
2 changes: 1 addition & 1 deletion
2
Example/RxPermission.xcodeproj/xcshareddata/xcschemes/RxPermission-Example.xcscheme
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
|
||
import Permission | ||
import RxSwift | ||
import RxCocoa | ||
|
||
extension Reactive where Base: Permission { | ||
|
||
|