Skip to content

Commit

Permalink
feat: add example
Browse files Browse the repository at this point in the history
  • Loading branch information
khoi-truong committed Apr 15, 2022
1 parent 2fa6bbd commit 017efc0
Show file tree
Hide file tree
Showing 26 changed files with 1,602 additions and 4 deletions.
24 changes: 24 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
platform :ios, '12.0'
use_frameworks!
inhibit_all_warnings!

source 'https://github.com/CocoaPods/Specs.git'

target 'RxPaginationExample' do
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'RxPagination'
pod 'Moya'
pod 'Moya/RxSwift'
pod 'Nuke'
pod 'Reusable'
end

post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
91 changes: 91 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
PODS:
- Action (5.0.0):
- RxCocoa (~> 6.0)
- RxSwift (~> 6.0)
- Alamofire (5.6.0)
- Differentiator (5.0.0)
- Moya (15.0.0):
- Moya/Core (= 15.0.0)
- Moya/Core (15.0.0):
- Alamofire (~> 5.0)
- Moya/RxSwift (15.0.0):
- Moya/Core
- RxSwift (~> 6.0)
- Nuke (10.7.1)
- Reusable (4.1.2):
- Reusable/Storyboard (= 4.1.2)
- Reusable/View (= 4.1.2)
- Reusable/Storyboard (4.1.2)
- Reusable/View (4.1.2)
- RxCocoa (6.5.0):
- RxRelay (= 6.5.0)
- RxSwift (= 6.5.0)
- RxDataSources (5.0.0):
- Differentiator (~> 5.0)
- RxCocoa (~> 6.0)
- RxSwift (~> 6.0)
- RxOptional (5.0.2):
- RxCocoa (~> 6.0)
- RxSwift (~> 6.0)
- RxPagination (0.0.2):
- Action (~> 5.0)
- RxCocoa (~> 6.0)
- RxOptional (~> 5.0)
- RxSwift (~> 6.0)
- RxSwiftExt (~> 6.0)
- RxRelay (6.5.0):
- RxSwift (= 6.5.0)
- RxSwift (6.5.0)
- RxSwiftExt (6.0.1):
- RxSwiftExt/Core (= 6.0.1)
- RxSwiftExt/RxCocoa (= 6.0.1)
- RxSwiftExt/Core (6.0.1):
- RxSwift (~> 6.0)
- RxSwiftExt/RxCocoa (6.0.1):
- RxCocoa (~> 6.0)
- RxSwiftExt/Core

DEPENDENCIES:
- Moya
- Moya/RxSwift
- Nuke
- Reusable
- RxCocoa
- RxDataSources
- RxPagination
- RxSwift

SPEC REPOS:
https://github.com/CocoaPods/Specs.git:
- Action
- Alamofire
- Differentiator
- Moya
- Nuke
- Reusable
- RxCocoa
- RxDataSources
- RxOptional
- RxPagination
- RxRelay
- RxSwift
- RxSwiftExt

SPEC CHECKSUMS:
Action: 47f1825511907b4fcd79dd7a7db9526c20f78018
Alamofire: 0c07058209f211e3d32824f8e0766d7c44ac83b3
Differentiator: e8497ceab83c1b10ca233716d547b9af21b9344d
Moya: 138f0573e53411fb3dc17016add0b748dfbd78ee
Nuke: 279f17a599fd1c83cf51de5e0e1f2db143a287b0
Reusable: 6bae6a5e8aa793c9c441db0213c863a64bce9136
RxCocoa: 94f817b71c07517321eb4f9ad299112ca8af743b
RxDataSources: aa47cc1ed6c500fa0dfecac5c979b723542d79cf
RxOptional: 3664964c96b69dd20c9cf78bdfe546615e26eca8
RxPagination: 422e45b27ee8eee720fa8b714c298f6ab0466e80
RxRelay: 1de1523e604c72b6c68feadedd1af3b1b4d0ecbd
RxSwift: 5710a9e6b17f3c3d6e40d6e559b9fa1e813b2ef8
RxSwiftExt: d61c4b9b06e0a448041b1c659e0f1b5c5a035afc

PODFILE CHECKSUM: 49db5b77b45b4fc14f9ad0fa63284d625e5a79df

COCOAPODS: 1.11.2
Loading

0 comments on commit 017efc0

Please sign in to comment.