forked from sergdort/CleanArchitectureRxSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
534 additions
and
2,080 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
Binary file removed
BIN
-18.4 KB
...xSwift.xcworkspace/xcuserdata/andrey.yastrebov.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Uncomment the next line to define a global platform for your project | ||
# platform :ios, '9.0' | ||
|
||
def rx_swift | ||
pod 'RxSwift', '~> 3.0' | ||
end | ||
|
||
def rx_cocoa | ||
pod 'RxCocoa', '~> 3.0' | ||
end | ||
|
||
def test_pods | ||
pod 'RxTest', '~> 3.0' | ||
pod 'RxBlocking', '~> 3.0' | ||
pod 'Nimble' | ||
end | ||
|
||
|
||
target 'CleanArchitectureRxSwift' do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
rx_cocoa | ||
rx_swift | ||
pod 'QueryKit' | ||
target 'CleanArchitectureRxSwiftTests' do | ||
inherit! :search_paths | ||
test_pods | ||
end | ||
|
||
end | ||
|
||
target 'CoreDataPlatform' do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
rx_swift | ||
pod 'QueryKit' | ||
target 'CoreDataPlatformTests' do | ||
inherit! :search_paths | ||
test_pods | ||
end | ||
|
||
end | ||
|
||
target 'Domain' do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
rx_swift | ||
|
||
target 'DomainTests' do | ||
inherit! :search_paths | ||
test_pods | ||
end | ||
|
||
end | ||
|
||
target 'Network' do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
rx_swift | ||
pod 'Alamofire' | ||
pod 'RxAlamofire' | ||
pod 'ObjectMapper' | ||
pod 'AlamofireObjectMapper' | ||
|
||
target 'NetworkTests' do | ||
inherit! :search_paths | ||
test_pods | ||
end | ||
|
||
end | ||
|
||
target 'RealmPlatform' do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
rx_swift | ||
pod 'RxRealm' | ||
pod 'QueryKit' | ||
pod 'RealmSwift' | ||
pod 'Realm' | ||
|
||
target 'RealmPlatformTests' do | ||
inherit! :search_paths | ||
test_pods | ||
end | ||
|
||
end | ||
ost_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
target.build_configurations.each do |config| | ||
if config.name == 'Debug' || target.name == 'RxSwift' | ||
config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES'] | ||
end | ||
end | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.