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

Update to latest Pods and fixed crashes from forced unwraps #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
59 changes: 59 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
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
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# 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/

# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build
21 changes: 16 additions & 5 deletions sample-swift/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Alamofire (4.7.2)
- Alamofire (4.7.3)
- AlamofireImage (3.3.1):
- Alamofire (~> 4.5)
- FLAnimatedImage (1.0.12)
Expand All @@ -12,7 +12,7 @@ PODS:
- NYTPhotoViewer/Core
- NYTPhotoViewer/Core (1.1.0)
- RSKImageCropper (2.1.0)
- SendBirdSDK (3.0.101)
- SendBirdSDK (3.0.112)
- TTTAttributedLabel (2.0.0)

DEPENDENCIES:
Expand All @@ -24,16 +24,27 @@ DEPENDENCIES:
- SendBirdSDK (~> 3.0)
- TTTAttributedLabel

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Alamofire
- AlamofireImage
- FLAnimatedImage
- MGSwipeTableCell
- NYTPhotoViewer
- RSKImageCropper
- SendBirdSDK
- TTTAttributedLabel

SPEC CHECKSUMS:
Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223
Alamofire: c7287b6e5d7da964a70935e5db17046b7fde6568
AlamofireImage: 3b35b586853abaf94ca1250f4e94cff3c21a4c0d
FLAnimatedImage: 4a0b56255d9b05f18b6dd7ee06871be5d3b89e31
MGSwipeTableCell: fb20e983988bde2b8d0df29c2d9e1d8ffd10b74a
NYTPhotoViewer: e80e8767f3780d2df37c6f72cbab15d6c7232911
RSKImageCropper: 0d0c6d8525a2381f03fde32a47c6703817a2feed
SendBirdSDK: 51f37e53ca7e9a1cae5ede0d83c6224518ba676d
SendBirdSDK: b91004d6eb7eb955de58330ae8c549663dc38dbb
TTTAttributedLabel: 8cffe8e127e4e82ff3af1e5386d4cd0ad000b656

PODFILE CHECKSUM: 9cbb42b5354bc4dc8b079e49148c24287caf665f

COCOAPODS: 1.4.0
COCOAPODS: 1.5.3
12 changes: 6 additions & 6 deletions sample-swift/Pods/Alamofire/README.md

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

4 changes: 2 additions & 2 deletions sample-swift/Pods/Alamofire/Source/Request.swift

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

2 changes: 1 addition & 1 deletion sample-swift/Pods/Alamofire/Source/ServerTrustPolicy.swift

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

10 changes: 5 additions & 5 deletions sample-swift/Pods/Alamofire/Source/SessionManager.swift

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

2 changes: 1 addition & 1 deletion sample-swift/Pods/Alamofire/Source/TaskDelegate.swift

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

21 changes: 16 additions & 5 deletions sample-swift/Pods/Manifest.lock

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

Loading