Skip to content

Commit

Permalink
Remove trace resources
Browse files Browse the repository at this point in the history
  • Loading branch information
sergdort committed Jul 22, 2017
1 parent 61be4d9 commit c07015e
Show file tree
Hide file tree
Showing 30 changed files with 534 additions and 2,080 deletions.
10 changes: 9 additions & 1 deletion CleanArchitectureRxSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,13 @@
name = Frameworks;
sourceTree = "<group>";
};
25707C6E1F23745700F852F7 /* Persistence */ = {
isa = PBXGroup;
children = (
);
path = Persistence;
sourceTree = "<group>";
};
25897AF71E58BD9100D3563C = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -976,13 +983,14 @@
BD107F4A1E7298690043D900 /* Network */ = {
isa = PBXGroup;
children = (
25707C6E1F23745700F852F7 /* Persistence */,
BD107F671E72A0DC0043D900 /* API */,
BD107F731E72B1790043D900 /* Entries */,
BD50EEF31E7AD99400CBEBD4 /* Network */,
BC8D07711E9309B200B4D96A /* Utils */,
515F94BB8B79F597BACF0614 /* UseCases */,
BD107F4C1E7298690043D900 /* Info.plist */,
BD107F4B1E7298690043D900 /* Network.h */,
515F94BB8B79F597BACF0614 /* UseCases */,
);
path = Network;
sourceTree = "<group>";
Expand Down
Binary file not shown.
10 changes: 0 additions & 10 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,3 @@ target 'RealmPlatform' do
end

end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES']
end
end
end
end
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ SPEC CHECKSUMS:
RxSwift: f9de85ea20cd2f7716ee5409fc13523dc638e4e4
RxTest: 1d00348a7848c91ab5bf5d197d2378aa6b2bb356

PODFILE CHECKSUM: fa9f0770597d1a764b8214e2441c9b92040e2c10
PODFILE CHECKSUM: 048e4f9ed7e8f8ff423ddfbcf8b3349cc175b774

COCOAPODS: 1.2.1
95 changes: 95 additions & 0 deletions Podfile.save
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
2 changes: 1 addition & 1 deletion Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c07015e

Please sign in to comment.