Skip to content
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
4 changes: 2 additions & 2 deletions Example/RxCocoa-Texture/RepositoryViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import AsyncDisplayKit
import RxSwift
import RxCocoa

class RepositoryViewController: ASViewController<ASTableNode> {
class RepositoryViewController: ASDKViewController<ASTableNode> {

private var items: [RepositoryViewModel2] = []
private var context = ASBatchContext()

let disposeBag = DisposeBag()

init() {
override init() {
let tableNode = ASTableNode(style: .plain)
tableNode.backgroundColor = .white
tableNode.automaticallyManagesSubnodes = true
Expand Down
8 changes: 4 additions & 4 deletions RxCocoa-Texture.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxCocoa-Texture.git', :tag => s.version.to_s }

s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.swift_version = '5.3'
s.source_files = 'RxCocoa-Texture/Classes/**/*'

s.dependency 'RxSwift', '~> 5.0'
s.dependency 'RxCocoa', '~> 5.0'
s.dependency 'Texture', '~> 2.7'
s.dependency 'RxSwift', '~> 6.0'
s.dependency 'RxCocoa', '~> 6.0'
s.dependency 'Texture', '~> 3.1.0'
end