forked from sinarionn/AppRouter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'AppRouter/RxSwift' methods uses Signal's instead of Observables. Presenter methods (push, present, setAsRoot) becomes throwable instead of returning optionals. New presenter configurable action called 'show'. Presenter supports multiple configurations (by providing different labels alongside configuration block)
- Loading branch information
Showing
37 changed files
with
1,341 additions
and
769 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 |
---|---|---|
|
@@ -51,6 +51,7 @@ playground.xcworkspace | |
# Carthage/Checkouts | ||
|
||
Carthage/Build | ||
Carthage/Checkouts | ||
|
||
# fastlane | ||
# | ||
|
This file was deleted.
Oops, something went wrong.
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,11 +1,18 @@ | ||
language: objective-c | ||
osx_image: xcode9.3 | ||
cache: | ||
directories: | ||
- Carthage | ||
matrix: | ||
include: | ||
- os: osx | ||
env: ACTION=iOS | ||
|
||
language: objective-c | ||
osx_image: xcode9.1 | ||
|
||
- os: osx | ||
env: ACTION=iOS | ||
before_script: | ||
- brew update | ||
- brew outdated carthage || brew upgrade carthage | ||
- carthage bootstrap --cache-builds | ||
script: | ||
- git submodule update --init --recursive | ||
- make install-$ACTION && make test-$ACTION | ||
- make install-$ACTION && make test-$ACTION | ||
env: | ||
global: | ||
secure: GeiEk7uS5SHr0owH5Oqfn0s46ar8UA9aKVq9g/MMrotvY5MIEPMwrpvZ5PI9nlPk9h3n5pAsKImMgkZsfQH9H1JqYB5AapVwcGtTi0QmJDm2oonq06N4Z45d3kFunlSqZFSD/H2bM/ZA0mj7zgMg1cKBM5tAaWLQyobguFQVJ0uCWpfX4+EUxxw57tcrUmJBj9poxR23bujuN87m23VsvWCDKewDxcfMtc01uxfOXSwLbJYPMuIdcOrs0CYQCyNjOp5ULUoUnpREBA/hNXOnRwjuBlJ6ZTIvnLsjsm9zxCwF8XCKQWBxbEzDW+un6/WsZjTGWBINaILhA5ivfpX+JulVMXP2wLUQojYXtxKtOBSd4Muwm9OVCX5gYP8FywuEAIsI5+Urz2aIJnJzvH5NTIqscJ3esrzND/P3vareDomeyqh0XC1IOwonYxZyWQVs/8jPlhmPtcnhMaUsV1hYZuWjvtRbnGx7dB87yrKLhDXwHpOZEsxYgyUfdPnf2EUY/nDBeiutE/uFNqT9fefpcwy4P5GNmRrDg/CBC0whYVinmfGhaXXzjbJCEc122/U/ZuDLsSPQs4kPlJRBFfxRKaeeWD36aGMD3uhgJOJEcEOy25C82JffXkkbBPlOrhvvGSoDTxbUItUi4yBjO+T9NTkjBFg6CNJn0Ap2l8mUYN4= |
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,15 +1,15 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "AppRouter" | ||
s.version = "4.1.2" | ||
s.version = "5.0.0" | ||
s.summary = "UIViewController creation, navigation, utility methods for easy routing" | ||
|
||
s.homepage = "https://github.com/MLSDev/AppRouter" | ||
s.license = "MIT" | ||
s.author = { "Artem Antihevich" => "[email protected]" } | ||
s.social_media_url = 'https://twitter.com/sinarionn' | ||
|
||
s.ios.deployment_target = "8.0" | ||
s.ios.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/MLSDev/AppRouter.git", :tag => s.version.to_s } | ||
s.requires_arc = true | ||
|
||
|
@@ -18,12 +18,28 @@ Pod::Spec.new do |s| | |
|
||
s.subspec 'Core' do |core| | ||
core.source_files = 'Sources/Core/*.swift' | ||
core.ios.deployment_target = "9.0" | ||
end | ||
|
||
s.subspec 'Route' do |route| | ||
route.source_files = 'Sources/Route/AppRouter+route.swift' | ||
route.dependency 'AppRouter/Core' | ||
route.dependency 'RxCocoa', '~> 4.0' | ||
route.dependency 'ReusableView', '~> 2.0' | ||
route.ios.deployment_target = "9.0" | ||
|
||
route.subspec 'Dip' do |dip| | ||
dip.source_files = 'Sources/Route/*.swift' | ||
dip.dependency 'Dip', '~> 6.0' | ||
dip.ios.deployment_target = "9.0" | ||
end | ||
end | ||
|
||
s.subspec 'RxSwift' do |rxswift| | ||
rxswift.ios.deployment_target = "8.0" | ||
rxswift.ios.deployment_target = "9.0" | ||
rxswift.osx.deployment_target = "10.10" | ||
rxswift.dependency 'RxSwift', '~> 4.0' | ||
rxswift.dependency 'RxCocoa', '~> 4.0' | ||
rxswift.source_files = 'Sources/RxSwift/*.swift' | ||
end | ||
|
||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
AppRouter.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
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
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
github "ReactiveX/RxSwift" | ||
github "sinarionn/ReusableView" | ||
github "AliSoftware/Dip" |
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 +1,3 @@ | ||
github "ReactiveX/RxSwift" "a0bf386834ca09e0438e2edf03d740eac3c4a6ce" | ||
github "AliSoftware/Dip" "6.1" | ||
github "ReactiveX/RxSwift" "4.2.0" | ||
github "sinarionn/ReusableView" "2.0.1" |
Submodule RxSwift
updated
from a0bf38 to faeb15
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
Oops, something went wrong.