Skip to content

Commit 67153a0

Browse files
committed
RX swift with MVVM and Coordinator implemented
1 parent 76e14ed commit 67153a0

File tree

707 files changed

+79955
-236
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

707 files changed

+79955
-236
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ xcuserdata/
4040
# you should judge for yourself, the pros and cons are mentioned at:
4141
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
4242
#
43-
Pods/
43+
#Pods/
4444

4545
# Carthage
4646
#
4747
# Add this line if you want to avoid checking in source code from Carthage dependencies.
4848
# Carthage/Checkouts
4949

50-
Carthage/Build
50+
#Carthage/Build
5151

5252
# fastlane
5353
#

Podfile

+18-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,27 @@ target 'iOSBoilerplate' do
1414
pod 'ReachabilitySwift'
1515
pod 'SwiftMessages'
1616
pod 'SwiftValidator' , :git => 'https://github.com/Sadmansamee/SwiftValidator.git', :branch => 'master'
17-
17+
pod 'RxSwift', '~> 5'
18+
pod 'RxCocoa', '~> 5'
19+
20+
#to check memory leak
21+
post_install do |installer|
22+
installer.pods_project.targets.each do |target|
23+
if target.name == ‘RxSwift’
24+
target.build_configurations.each do |config|
25+
if config.name == ‘Debug’
26+
config.build_settings[‘OTHER_SWIFT_FLAGS’] ||= [-D’, ‘TRACE_RESOURCES’]
27+
end
28+
end
29+
end
30+
end
31+
end
32+
1833
target 'iOSBoilerplateTests' do
1934
inherit! :search_paths
2035
# Pods for testing
36+
pod 'RxBlocking', '~> 5'
37+
pod 'RxTest', '~> 5'
2138
end
2239

2340
target 'iOSBoilerplateUITests' do

Pods/Alamofire/LICENSE

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Alamofire/README.md

+243
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)