Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/data layer #2

Merged
merged 7 commits into from
Jun 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## User settings
xcuserdata/
xcshareddata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
Expand Down Expand Up @@ -37,9 +38,9 @@ playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
Packages/
Package.pins
Package.resolved
# *.xcodeproj
#
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
Expand All @@ -54,7 +55,7 @@ playground.xcworkspace
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace
Expand Down
9 changes: 7 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '13.0'

target 'ZarinPal-Challenge' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

pod 'Alamofire'
pod 'RxSwift'
pod 'Kingfisher'
pod 'RxAlamofire'
pod 'KeychainAccess'

# Pods for ZarinPal-Challenge

target 'ZarinPal-ChallengeTests' do
Expand Down
39 changes: 37 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
PODFILE CHECKSUM: 76fa47e3580de9df404b88cc7b7494f0515bcaa6
PODS:
- Alamofire (5.2.1)
- KeychainAccess (4.2.0)
- Kingfisher (5.14.0):
- Kingfisher/Core (= 5.14.0)
- Kingfisher/Core (5.14.0)
- RxAlamofire (5.3.2):
- RxAlamofire/Core (= 5.3.2)
- RxAlamofire/Core (5.3.2):
- Alamofire (~> 5.1)
- RxSwift (~> 5.1)
- RxSwift (5.1.1)

COCOAPODS: 1.9.0
DEPENDENCIES:
- Alamofire
- KeychainAccess
- Kingfisher
- RxAlamofire
- RxSwift

SPEC REPOS:
trunk:
- Alamofire
- KeychainAccess
- Kingfisher
- RxAlamofire
- RxSwift

SPEC CHECKSUMS:
Alamofire: e911732990610fe89af59ac0077f923d72dc3dfd
KeychainAccess: 3f760109aa99b05d0f231e28b22642da7153e38a
Kingfisher: 7b64389a43139c903ec434788344c288217c792d
RxAlamofire: 9234f30d94bfae9889c2aaba36358312083a7ad3
RxSwift: 81470a2074fa8780320ea5fe4102807cb7118178

PODFILE CHECKSUM: 407d4b8608220ca0dc21b142869a638ea0e71b19

COCOAPODS: 1.9.3
39 changes: 37 additions & 2 deletions Pods/Manifest.lock

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

2,431 changes: 2,215 additions & 216 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

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

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

Loading