Skip to content

Commit

Permalink
Fix ImageSource version in Podfile for example project
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Yutkin committed May 31, 2019
1 parent b324083 commit e00e3f0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 30 deletions.
16 changes: 8 additions & 8 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ use_frameworks!
target 'PaparazzoExample' do
pod 'Paparazzo', :path => '../'
pod 'Marshroute', '0.4.2'
pod 'ImageSource', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource', '3.0.0'
end

target 'PaparazzoExample_NoMarshroute' do
pod 'Paparazzo/Core', :path => '../'
pod 'Paparazzo/SDWebImage', :path => '../'
pod 'ImageSource/Core', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource/PHAsset', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource/Local', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource/Remote', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource/SDWebImage', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource/Core', '3.0.0'
pod 'ImageSource/PHAsset', '3.0.0'
pod 'ImageSource/Local', '3.0.0'
pod 'ImageSource/Remote', '3.0.0'
pod 'ImageSource/SDWebImage', '3.0.0'
end

target 'PaparazzoExample_Storyboard' do
pod 'Paparazzo/Core', :path => '../'
pod 'ImageSource', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource', '3.0.0'
end

target 'PaparazzoTests' do
pod 'Paparazzo', :path => '../'
pod 'ImageSource', :git => 'https://github.com/avito-tech/ImageSource', :branch => 'swift-4.2'
pod 'ImageSource', '3.0.0'
end
37 changes: 15 additions & 22 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PODS:
- Alamofire (4.8.1)
- AlamofireImage (3.4.0):
- Alamofire (~> 4.7)
- Alamofire (4.8.2)
- AlamofireImage (3.5.2):
- Alamofire (~> 4.8)
- ImageSource (3.0.0):
- ImageSource/AlamofireImage (= 3.0.0)
- ImageSource/Core (= 3.0.0)
- ImageSource/Local (= 3.0.0)
- ImageSource/PHAsset (= 3.0.0)
- ImageSource/Remote (= 3.0.0)
- ImageSource/AlamofireImage (3.0.0):
- AlamofireImage (= 3.4.0)
- AlamofireImage (~> 3.4)
- ImageSource/Remote
- ImageSource/Core (3.0.0)
- ImageSource/Local (3.0.0):
Expand Down Expand Up @@ -70,12 +70,12 @@ PODS:
- SDWebImage/Core (3.8.2)

DEPENDENCIES:
- ImageSource (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource/Core (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource/Local (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource/PHAsset (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource/Remote (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource/SDWebImage (from `https://github.com/avito-tech/ImageSource`, branch `swift-4.2`)
- ImageSource (= 3.0.0)
- ImageSource/Core (= 3.0.0)
- ImageSource/Local (= 3.0.0)
- ImageSource/PHAsset (= 3.0.0)
- ImageSource/Remote (= 3.0.0)
- ImageSource/SDWebImage (= 3.0.0)
- Marshroute (= 0.4.2)
- Paparazzo (from `../`)
- Paparazzo/Core (from `../`)
Expand All @@ -85,31 +85,24 @@ SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Alamofire
- AlamofireImage
- ImageSource
- JNWSpringAnimation
- Marshroute
- SDWebImage

EXTERNAL SOURCES:
ImageSource:
:branch: swift-4.2
:git: https://github.com/avito-tech/ImageSource
Paparazzo:
:path: "../"

CHECKOUT OPTIONS:
ImageSource:
:commit: 72a922bb45464bd4f783137148fc685b74e0420b
:git: https://github.com/avito-tech/ImageSource

SPEC CHECKSUMS:
Alamofire: 16ce2c353fb72865124ddae8a57c5942388f4f11
AlamofireImage: 5f79836de27236819b13b27d0c97be6c205976fe
ImageSource: c58fa9f14fd294366dee4095853c80cd548975ec
Alamofire: ae5c501addb7afdbb13687d7f2f722c78734c2d3
AlamofireImage: 63cfe3baf1370be6c498149687cf6db3e3b00999
ImageSource: 6610cd3b66439f59b2f0aa82af203cd9263ff36b
JNWSpringAnimation: cd4c2f4464324f63f176c3624ffccf205211a100
Marshroute: 15cf8067a997bf298e9db9317dd7c32b8799a787
Paparazzo: c0d207f0b5ffa2392d1b8d99abeed30802707a30
SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c

PODFILE CHECKSUM: c5c4e873e4ca6ae8b0b8cdb41bcf5a8f464856f9
PODFILE CHECKSUM: 142d29a62dad064affbfcfd7a494204abfa7ab3c

COCOAPODS: 1.5.3

0 comments on commit e00e3f0

Please sign in to comment.