├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Carthage └── Checkouts │ ├── Bond │ ├── .gitignore │ ├── .gitmodules │ ├── .swift-version │ ├── .travis.yml │ ├── Bond-App │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Bond.podspec │ ├── Bond.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Bond-iOS.xcscheme │ │ │ ├── Bond-macOS.xcscheme │ │ │ └── Bond-tvOS.xcscheme │ ├── Bond.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Bond │ │ ├── NSObject+Bond.h │ │ └── NSObject+Bond.m │ ├── Cartfile │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ ├── Diff.swift │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Configurations │ │ │ │ ├── Deployment-Targets.xcconfig │ │ │ │ ├── Universal-Framework-Target.xcconfig │ │ │ │ └── Universal-Target-Base.xcconfig │ │ │ ├── Diff.podspec │ │ │ ├── Diff.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── xcbaselines │ │ │ │ │ └── C9838FF01D29571000691BE8.xcbaseline │ │ │ │ │ │ ├── 5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Diff.xcscheme │ │ │ ├── DiffTests │ │ │ │ ├── BatchUpdateTests.swift │ │ │ │ ├── DiffTests.swift │ │ │ │ ├── ExtendedPatchSortTests.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── NestedDiffTests.swift │ │ │ │ ├── NestedExtendedDiffTests.swift │ │ │ │ ├── PatchApplyTests.swift │ │ │ │ └── PatchSortTests.swift │ │ │ ├── Examples │ │ │ │ └── TableViewExample │ │ │ │ │ ├── TableViewExample.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── TableViewExample.xcscheme │ │ │ │ │ └── TableViewExample │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── NestedTableViewController.swift │ │ │ │ │ └── TableViewController.swift │ │ │ ├── Framework │ │ │ │ ├── Diff.h │ │ │ │ └── Info.plist │ │ │ ├── Graph.playground │ │ │ │ ├── Contents.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Arrows.swift │ │ │ │ │ ├── CharacterLabels.swift │ │ │ │ │ ├── Diff.swift │ │ │ │ │ ├── GraphView.swift │ │ │ │ │ ├── Patch.swift │ │ │ │ │ └── ViewController.swift │ │ │ │ └── contents.xcplayground │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── PerfTests │ │ │ │ ├── Benchmark │ │ │ │ │ ├── Benchmark.xcodeproj │ │ │ │ │ │ ├── Benchmark.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── Benchmark.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── Benchmark │ │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ │ ├── Dwifft.swift │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── ViewController.swift │ │ │ │ │ ├── Cartfile │ │ │ │ │ └── Cartfile.resolved │ │ │ │ ├── PerfTests │ │ │ │ │ ├── build-script │ │ │ │ │ └── main.swift │ │ │ │ └── Utils │ │ │ │ │ ├── PerformanceTestUtils.swift │ │ │ │ │ └── Resources │ │ │ │ │ ├── Diff-new.swift │ │ │ │ │ └── Diff-old.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ ├── Diff+UIKit.swift │ │ │ │ ├── Diff.swift │ │ │ │ ├── ExtendedDiff.swift │ │ │ │ ├── ExtendedPatch+Apply.swift │ │ │ │ ├── ExtendedPatch.swift │ │ │ │ ├── GenericPatch.swift │ │ │ │ ├── LinkedList.swift │ │ │ │ ├── NestedDiff.swift │ │ │ │ ├── NestedExtendedDiff.swift │ │ │ │ ├── Patch+Apply.swift │ │ │ │ ├── Patch+Sort.swift │ │ │ │ └── Patch.swift │ │ │ └── codecov.yml │ │ │ └── ReactiveKit │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── Assets │ │ │ └── logo.png │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── Playground.playground │ │ │ ├── Contents.swift │ │ │ └── contents.xcplayground │ │ │ ├── README.md │ │ │ ├── ReactiveKit.podspec │ │ │ ├── ReactiveKit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── xcbaselines │ │ │ │ └── ECBCCDD91BEB6B9B00723476.xcbaseline │ │ │ │ │ ├── 15721443-CEB9-478C-919D-711F1A7CCA56.plist │ │ │ │ │ └── Info.plist │ │ │ │ └── xcschemes │ │ │ │ ├── ReactiveKit-iOS.xcscheme │ │ │ │ ├── ReactiveKit-macOS.xcscheme │ │ │ │ ├── ReactiveKit-tvOS.xcscheme │ │ │ │ └── ReactiveKit-watchOS.xcscheme │ │ │ ├── ReactiveKit.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── ReactiveKit │ │ │ ├── Info.plist │ │ │ └── ReactiveKit.h │ │ │ ├── ReactiveKitTests │ │ │ └── Info.plist │ │ │ ├── Sources │ │ │ ├── Bindable.swift │ │ │ ├── Connectable.swift │ │ │ ├── Deallocatable.swift │ │ │ ├── Disposable.swift │ │ │ ├── Event.swift │ │ │ ├── ExecutionContext.swift │ │ │ ├── Lock.swift │ │ │ ├── NoError.swift │ │ │ ├── Observer.swift │ │ │ ├── Optional.swift │ │ │ ├── Property.swift │ │ │ ├── Reactive.swift │ │ │ ├── Result.swift │ │ │ ├── Signal.swift │ │ │ ├── SignalProtocol+Arities.swift │ │ │ ├── SignalProtocol.swift │ │ │ ├── Subjects.swift │ │ │ └── Typealiases.swift │ │ │ └── Tests │ │ │ └── ReactiveKitTests │ │ │ ├── Helpers.swift │ │ │ ├── PropertyTests.swift │ │ │ ├── ResultTests.swift │ │ │ └── SignalTests.swift │ ├── LICENSE │ ├── Package.pins │ ├── Package.swift │ ├── Playground.playground │ │ ├── Pages │ │ │ ├── Key Value Observing.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ └── Table View Binding.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ └── contents.xcplayground │ ├── README.md │ ├── Sources │ │ ├── BNDProtocolProxyBase │ │ │ ├── BNDProtocolProxyBase.m │ │ │ └── include │ │ │ │ └── BNDProtocolProxyBase.h │ │ └── Bond │ │ │ ├── AppKit │ │ │ ├── NSAppearanceCustomization.swift │ │ │ ├── NSButton.swift │ │ │ ├── NSColorWell.swift │ │ │ ├── NSControl.swift │ │ │ ├── NSImageView.swift │ │ │ ├── NSMenuItem.swift │ │ │ ├── NSPopUpButton.swift │ │ │ ├── NSProgressIndicator.swift │ │ │ ├── NSSegmentedControl.swift │ │ │ ├── NSSlider.swift │ │ │ ├── NSStatusBarButton.swift │ │ │ ├── NSTableView.swift │ │ │ ├── NSTextField.swift │ │ │ ├── NSTextView.swift │ │ │ └── NSView.swift │ │ │ ├── Bond.swift │ │ │ ├── Collections │ │ │ ├── Observable2DArray.swift │ │ │ ├── ObservableArray.swift │ │ │ ├── ObservableDictionary.swift │ │ │ └── ObservableSet.swift │ │ │ ├── DataSource.swift │ │ │ ├── DynamicSubject.swift │ │ │ ├── Observable.swift │ │ │ ├── ProtocolProxy.swift │ │ │ ├── QueryableDataSource.swift │ │ │ ├── Shared │ │ │ ├── CALayer.swift │ │ │ ├── NSLayoutConstraint.swift │ │ │ ├── NSObject+KVO.swift │ │ │ ├── NSObject.swift │ │ │ ├── NotificationCenter.swift │ │ │ └── SignalProtocol.swift │ │ │ └── UIKit │ │ │ ├── UIAccessibilityIdentification.swift │ │ │ ├── UIActivityIndicatorView.swift │ │ │ ├── UIApplication.swift │ │ │ ├── UIBarButtonItem.swift │ │ │ ├── UIBarItem.swift │ │ │ ├── UIButton.swift │ │ │ ├── UICollectionView.swift │ │ │ ├── UIControl.swift │ │ │ ├── UIDatePicker.swift │ │ │ ├── UIGestureRecognizer.swift │ │ │ ├── UIImageView.swift │ │ │ ├── UILabel.swift │ │ │ ├── UINavigationBar.swift │ │ │ ├── UINavigationItem.swift │ │ │ ├── UIProgressView.swift │ │ │ ├── UIRefreshControl.swift │ │ │ ├── UISegmentedControl.swift │ │ │ ├── UISlider.swift │ │ │ ├── UIStepper.swift │ │ │ ├── UISwitch.swift │ │ │ ├── UITableView.swift │ │ │ ├── UITextField.swift │ │ │ ├── UITextView.swift │ │ │ └── UIView.swift │ ├── Supporting Files │ │ ├── Bond-Info.plist │ │ ├── Bond.h │ │ └── BondTests-Info.plist │ └── Tests │ │ └── BondTests │ │ ├── BondTests.swift │ │ ├── DynamicSubjectTests.swift │ │ ├── Helpers.swift │ │ ├── NSObjectTests.swift │ │ ├── Observable2DArrayTests.swift │ │ ├── ObservableArrayTests.swift │ │ ├── ObservableSetTests.swift │ │ ├── ProtocolProxyTests.swift │ │ ├── UICollectionViewTests.swift │ │ ├── UIKitTests.swift │ │ └── UITableViewTests.swift │ ├── Diff.swift │ ├── .gitignore │ ├── .travis.yml │ ├── Configurations │ │ ├── Deployment-Targets.xcconfig │ │ ├── Universal-Framework-Target.xcconfig │ │ └── Universal-Target-Base.xcconfig │ ├── Diff.podspec │ ├── Diff.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── xcbaselines │ │ │ └── C9838FF01D29571000691BE8.xcbaseline │ │ │ │ ├── 5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist │ │ │ │ └── Info.plist │ │ │ └── xcschemes │ │ │ └── Diff.xcscheme │ ├── DiffTests │ │ ├── BatchUpdateTests.swift │ │ ├── DiffTests.swift │ │ ├── ExtendedPatchSortTests.swift │ │ ├── Info.plist │ │ ├── NestedDiffTests.swift │ │ ├── NestedExtendedDiffTests.swift │ │ ├── PatchApplyTests.swift │ │ └── PatchSortTests.swift │ ├── Examples │ │ └── TableViewExample │ │ │ ├── TableViewExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TableViewExample.xcscheme │ │ │ └── TableViewExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── NestedTableViewController.swift │ │ │ └── TableViewController.swift │ ├── Framework │ │ ├── Diff.h │ │ └── Info.plist │ ├── Graph.playground │ │ ├── Contents.swift │ │ ├── Sources │ │ │ ├── Arrows.swift │ │ │ ├── CharacterLabels.swift │ │ │ ├── Diff.swift │ │ │ ├── GraphView.swift │ │ │ ├── Patch.swift │ │ │ └── ViewController.swift │ │ └── contents.xcplayground │ ├── LICENSE │ ├── Package.swift │ ├── PerfTests │ │ ├── Benchmark │ │ │ ├── Benchmark.xcodeproj │ │ │ │ ├── Benchmark.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Benchmark.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Benchmark │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Dwifft.swift │ │ │ │ ├── Info.plist │ │ │ │ └── ViewController.swift │ │ │ ├── Cartfile │ │ │ └── Cartfile.resolved │ │ ├── PerfTests │ │ │ ├── build-script │ │ │ └── main.swift │ │ └── Utils │ │ │ ├── PerformanceTestUtils.swift │ │ │ └── Resources │ │ │ ├── Diff-new.swift │ │ │ └── Diff-old.swift │ ├── README.md │ ├── Sources │ │ ├── Diff+UIKit.swift │ │ ├── Diff.swift │ │ ├── ExtendedDiff.swift │ │ ├── ExtendedPatch+Apply.swift │ │ ├── ExtendedPatch.swift │ │ ├── GenericPatch.swift │ │ ├── LinkedList.swift │ │ ├── NestedDiff.swift │ │ ├── NestedExtendedDiff.swift │ │ ├── Patch+Apply.swift │ │ ├── Patch+Sort.swift │ │ └── Patch.swift │ └── codecov.yml │ ├── Freddy │ ├── .cocoadocs.yml │ ├── .gitignore │ ├── .ruby-version │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Framework.xcconfig │ │ ├── Release.xcconfig │ │ └── Tests.xcconfig │ ├── Freddy.podspec │ ├── Freddy.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Freddy.xcscheme │ │ │ ├── MobileFreddy.xcscheme │ │ │ ├── NanoFreddy.xcscheme │ │ │ └── TVFreddy.xcscheme │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── README_Images │ │ ├── addErrorBreakpoint.png │ │ ├── addType.png │ │ ├── editBreakpoint.png │ │ └── projectNav_addBreakpoint.png │ ├── Resources │ │ └── scripts │ │ │ ├── publish_docs.sh │ │ │ └── validate_carthage.sh │ ├── Sources │ │ ├── Freddy.h │ │ ├── Info.plist │ │ ├── JSON.swift │ │ ├── JSONDecodable.swift │ │ ├── JSONEncodable.swift │ │ ├── JSONEncodingDetector.swift │ │ ├── JSONLiteralConvertible.swift │ │ ├── JSONParser.swift │ │ ├── JSONParsing.swift │ │ ├── JSONSerializing.swift │ │ └── JSONSubscripting.swift │ ├── Tests │ │ └── FreddyTests │ │ │ ├── Info.plist │ │ │ ├── JSONDecodableTests.swift │ │ │ ├── JSONEncodableTests.swift │ │ │ ├── JSONEncodingDetectorTests.swift │ │ │ ├── JSONParserTests.swift │ │ │ ├── JSONSerializingTests.swift │ │ │ ├── JSONSubscriptingTests.swift │ │ │ ├── JSONTests.swift │ │ │ ├── JSONTypeTests.swift │ │ │ ├── Person.swift │ │ │ ├── sample.JSON │ │ │ └── sampleNoWhiteSpace.JSON │ └── fastlane │ │ ├── Fastfile │ │ └── README.md │ └── ReactiveKit │ ├── .gitignore │ ├── .gitmodules │ ├── .swift-version │ ├── .travis.yml │ ├── Assets │ └── logo.png │ ├── LICENSE │ ├── Package.swift │ ├── Playground.playground │ ├── Contents.swift │ └── contents.xcplayground │ ├── README.md │ ├── ReactiveKit.podspec │ ├── ReactiveKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ ├── xcbaselines │ │ └── ECBCCDD91BEB6B9B00723476.xcbaseline │ │ │ ├── 15721443-CEB9-478C-919D-711F1A7CCA56.plist │ │ │ └── Info.plist │ │ └── xcschemes │ │ ├── ReactiveKit-iOS.xcscheme │ │ ├── ReactiveKit-macOS.xcscheme │ │ ├── ReactiveKit-tvOS.xcscheme │ │ └── ReactiveKit-watchOS.xcscheme │ ├── ReactiveKit.xcworkspace │ └── contents.xcworkspacedata │ ├── ReactiveKit │ ├── Info.plist │ └── ReactiveKit.h │ ├── ReactiveKitTests │ └── Info.plist │ ├── Sources │ ├── Bindable.swift │ ├── Connectable.swift │ ├── Deallocatable.swift │ ├── Disposable.swift │ ├── Event.swift │ ├── ExecutionContext.swift │ ├── Lock.swift │ ├── NoError.swift │ ├── Observer.swift │ ├── Optional.swift │ ├── Property.swift │ ├── Reactive.swift │ ├── Result.swift │ ├── Signal.swift │ ├── SignalProtocol+Arities.swift │ ├── SignalProtocol.swift │ ├── Subjects.swift │ └── Typealiases.swift │ └── Tests │ └── ReactiveKitTests │ ├── Helpers.swift │ ├── PropertyTests.swift │ ├── ResultTests.swift │ └── SignalTests.swift ├── Client ├── Client.h ├── Client.swift ├── HTTPMethod.swift ├── Info.plist ├── Request.swift ├── RequestParameters.swift ├── Result.swift └── Utilities.swift ├── Entities ├── Entities.h ├── Info.plist ├── Message.swift ├── Room.swift ├── Token.swift ├── User.swift └── Utilities.swift ├── Interactors ├── Authentication.swift ├── Info.plist ├── Interactors.h ├── RoomList.swift └── RoomMessages.swift ├── Networking ├── APIError.swift ├── Activity.swift ├── Client.swift ├── Info.plist ├── Message.swift ├── Networking.h ├── Room.swift ├── SafeClient.swift ├── Token.swift ├── User.swift └── Utilities.swift ├── README.md ├── ReactiveGitter.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── srdan.xcuserdatad │ └── xcschemes │ ├── ReactiveGitter.xcscheme │ └── xcschememanagement.plist ├── ReactiveGitter ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Extensions.swift ├── Info.plist └── TokenService.swift ├── Scenes ├── Authentication.swift ├── Extensions.swift ├── Info.plist ├── RoomList.swift ├── RoomMessages.swift └── Scenes.h └── Views ├── Cells ├── MessageCell.swift └── RoomCell.swift ├── Info.plist ├── Utilities.swift ├── View Controllers ├── Authentication.swift ├── RoomList.swift └── RoomMessages.swift └── Views.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond-App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond-App/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond-App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond-App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond-App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond-App/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcodeproj/xcshareddata/xcschemes/Bond-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond/NSObject+Bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond/NSObject+Bond.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Bond/NSObject+Bond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Bond/NSObject+Bond.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Cartfile -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Deployment-Targets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Deployment-Targets.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Universal-Framework-Target.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Universal-Framework-Target.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Universal-Target-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Configurations/Universal-Target-Base.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcschemes/Diff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcschemes/Diff.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/BatchUpdateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/BatchUpdateTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/DiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/DiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/ExtendedPatchSortTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/ExtendedPatchSortTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/NestedDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/NestedDiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/NestedExtendedDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/NestedExtendedDiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/PatchApplyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/PatchApplyTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/PatchSortTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/DiffTests/PatchSortTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/xcshareddata/xcschemes/TableViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/xcshareddata/xcschemes/TableViewExample.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/NestedTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/NestedTableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/TableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Framework/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Framework/Diff.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Arrows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Arrows.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/CharacterLabels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/CharacterLabels.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Diff.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Diff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/GraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/GraphView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Patch.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Patch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/ViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Graph.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Dwifft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Dwifft.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/ViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Cartfile: -------------------------------------------------------------------------------- 1 | github "jflinter/Dwifft" 2 | 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "jflinter/Dwifft" "0.5" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/build-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/build-script -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/PerformanceTestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/PerformanceTestUtils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-new.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-new.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-old.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-old.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Diff+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Diff+UIKit.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Diff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch+Apply.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/GenericPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/GenericPatch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/LinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/LinkedList.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/NestedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/NestedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/NestedExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/NestedExtendedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch+Apply.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch+Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch+Sort.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/Sources/Patch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/Diff.swift/codecov.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Assets/logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Playground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Playground.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/15721443-CEB9-478C-919D-711F1A7CCA56.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/15721443-CEB9-478C-919D-711F1A7CCA56.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-watchOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit/ReactiveKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKit/ReactiveKit.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/ReactiveKitTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Bindable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Connectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Connectable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Deallocatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Deallocatable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Disposable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Event.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/ExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/ExecutionContext.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Lock.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/NoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/NoError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Observer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Optional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Property.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Reactive.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Result.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Signal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol+Arities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol+Arities.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Subjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Subjects.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Sources/Typealiases.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/Helpers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/PropertyTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/ResultTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/SignalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/SignalTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Package.pins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Package.pins -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Playground.playground/Pages/Key Value Observing.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Playground.playground/Pages/Key Value Observing.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Playground.playground/Pages/Table View Binding.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Playground.playground/Pages/Table View Binding.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/BNDProtocolProxyBase/BNDProtocolProxyBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/BNDProtocolProxyBase/BNDProtocolProxyBase.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/BNDProtocolProxyBase/include/BNDProtocolProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/BNDProtocolProxyBase/include/BNDProtocolProxyBase.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSAppearanceCustomization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSAppearanceCustomization.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSButton.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSColorWell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSColorWell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSControl.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSImageView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSMenuItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSPopUpButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSPopUpButton.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSProgressIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSProgressIndicator.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSSegmentedControl.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSSlider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSStatusBarButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSStatusBarButton.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTableView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTextField.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSTextView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/AppKit/NSView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Bond.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Bond.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Collections/Observable2DArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Collections/Observable2DArray.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableArray.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableDictionary.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Collections/ObservableSet.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/DataSource.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/DynamicSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/DynamicSubject.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Observable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/ProtocolProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/ProtocolProxy.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/QueryableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/QueryableDataSource.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/CALayer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/NSLayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/NSLayoutConstraint.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/NSObject+KVO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/NSObject+KVO.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/NSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/NSObject.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/NotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/NotificationCenter.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/Shared/SignalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/Shared/SignalProtocol.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIAccessibilityIdentification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIAccessibilityIdentification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIActivityIndicatorView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIApplication.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIBarButtonItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIBarItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIButton.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UICollectionView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIControl.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIDatePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIDatePicker.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIGestureRecognizer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIImageView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UILabel.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UINavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UINavigationBar.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UINavigationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UINavigationItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIProgressView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIRefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIRefreshControl.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISegmentedControl.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISlider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIStepper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UISwitch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITableView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITextField.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UITextView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Sources/Bond/UIKit/UIView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Supporting Files/Bond-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Supporting Files/Bond-Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Supporting Files/Bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Supporting Files/Bond.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Supporting Files/BondTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Supporting Files/BondTests-Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/BondTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/BondTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/DynamicSubjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/DynamicSubjectTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/Helpers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/NSObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/NSObjectTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/Observable2DArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/Observable2DArrayTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/ObservableArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/ObservableArrayTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/ObservableSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/ObservableSetTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/ProtocolProxyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/ProtocolProxyTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/UICollectionViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/UICollectionViewTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/UIKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/UIKitTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Bond/Tests/BondTests/UITableViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Bond/Tests/BondTests/UITableViewTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Configurations/Deployment-Targets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Configurations/Deployment-Targets.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Configurations/Universal-Framework-Target.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Configurations/Universal-Framework-Target.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Configurations/Universal-Target-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Configurations/Universal-Target-Base.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/5ACB3D1B-D608-4861-BD7C-4E5E202E879C.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcbaselines/C9838FF01D29571000691BE8.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcschemes/Diff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Diff.xcodeproj/xcshareddata/xcschemes/Diff.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/BatchUpdateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/BatchUpdateTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/DiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/DiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/ExtendedPatchSortTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/ExtendedPatchSortTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/NestedDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/NestedDiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/NestedExtendedDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/NestedExtendedDiffTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/PatchApplyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/PatchApplyTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/DiffTests/PatchSortTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/DiffTests/PatchSortTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/xcshareddata/xcschemes/TableViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample.xcodeproj/xcshareddata/xcschemes/TableViewExample.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/NestedTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/NestedTableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Examples/TableViewExample/TableViewExample/TableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Framework/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Framework/Diff.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Arrows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Arrows.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/CharacterLabels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/CharacterLabels.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Diff.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Diff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/GraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/GraphView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/Patch.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Patch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/Sources/ViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Graph.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Graph.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Dwifft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Dwifft.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Benchmark/ViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Cartfile: -------------------------------------------------------------------------------- 1 | github "jflinter/Dwifft" 2 | 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Benchmark/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "jflinter/Dwifft" "0.5" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/build-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/build-script -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/PerfTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Utils/PerformanceTestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Utils/PerformanceTestUtils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-new.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-new.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-old.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/PerfTests/Utils/Resources/Diff-old.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/Diff+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/Diff+UIKit.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/Diff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/ExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/ExtendedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch+Apply.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/ExtendedPatch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/GenericPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/GenericPatch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/LinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/LinkedList.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/NestedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/NestedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/NestedExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/NestedExtendedDiff.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/Patch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/Patch+Apply.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/Patch+Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/Patch+Sort.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/Sources/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/Sources/Patch.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Diff.swift/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Diff.swift/codecov.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/.cocoadocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/.cocoadocs.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/.swift-version: -------------------------------------------------------------------------------- 1 | swift-2.2-SNAPSHOT-2015-12-22-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Configurations/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Configurations/Base.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Configurations/Debug.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Configurations/Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Configurations/Framework.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Configurations/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Configurations/Release.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Configurations/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Configurations/Tests.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/Freddy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/Freddy.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/MobileFreddy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/MobileFreddy.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/NanoFreddy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/NanoFreddy.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/TVFreddy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Freddy.xcodeproj/xcshareddata/xcschemes/TVFreddy.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Gemfile -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/README_Images/addErrorBreakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/README_Images/addErrorBreakpoint.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/README_Images/addType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/README_Images/addType.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/README_Images/editBreakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/README_Images/editBreakpoint.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/README_Images/projectNav_addBreakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/README_Images/projectNav_addBreakpoint.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Resources/scripts/publish_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Resources/scripts/publish_docs.sh -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Resources/scripts/validate_carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Resources/scripts/validate_carthage.sh -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/Freddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/Freddy.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSON.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONDecodable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONEncodable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONEncodingDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONEncodingDetector.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONLiteralConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONLiteralConvertible.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONParser.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONParsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONParsing.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONSerializing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONSerializing.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Sources/JSONSubscripting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Sources/JSONSubscripting.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONDecodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONDecodableTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONEncodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONEncodableTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONEncodingDetectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONEncodingDetectorTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONParserTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONSerializingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONSerializingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONSubscriptingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONSubscriptingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/JSONTypeTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/Person.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/sample.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/sample.JSON -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/Tests/FreddyTests/sampleNoWhiteSpace.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/Tests/FreddyTests/sampleNoWhiteSpace.JSON -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/fastlane/Fastfile -------------------------------------------------------------------------------- /Carthage/Checkouts/Freddy/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/Freddy/fastlane/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Assets/logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Playground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Playground.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/15721443-CEB9-478C-919D-711F1A7CCA56.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/15721443-CEB9-478C-919D-711F1A7CCA56.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcbaselines/ECBCCDD91BEB6B9B00723476.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcodeproj/xcshareddata/xcschemes/ReactiveKit-watchOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKit/ReactiveKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKit/ReactiveKit.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/ReactiveKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/ReactiveKitTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Bindable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Connectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Connectable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Deallocatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Deallocatable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Disposable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Event.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/ExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/ExecutionContext.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Lock.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/NoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/NoError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Observer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Optional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Property.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Reactive.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Result.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Signal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol+Arities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol+Arities.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/SignalProtocol.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Subjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Subjects.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Sources/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Sources/Typealiases.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/Helpers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/PropertyTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/ResultTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/SignalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Carthage/Checkouts/ReactiveKit/Tests/ReactiveKitTests/SignalTests.swift -------------------------------------------------------------------------------- /Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Client.h -------------------------------------------------------------------------------- /Client/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Client.swift -------------------------------------------------------------------------------- /Client/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/HTTPMethod.swift -------------------------------------------------------------------------------- /Client/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Info.plist -------------------------------------------------------------------------------- /Client/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Request.swift -------------------------------------------------------------------------------- /Client/RequestParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/RequestParameters.swift -------------------------------------------------------------------------------- /Client/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Result.swift -------------------------------------------------------------------------------- /Client/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Client/Utilities.swift -------------------------------------------------------------------------------- /Entities/Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Entities.h -------------------------------------------------------------------------------- /Entities/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Info.plist -------------------------------------------------------------------------------- /Entities/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Message.swift -------------------------------------------------------------------------------- /Entities/Room.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Room.swift -------------------------------------------------------------------------------- /Entities/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Token.swift -------------------------------------------------------------------------------- /Entities/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/User.swift -------------------------------------------------------------------------------- /Entities/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Entities/Utilities.swift -------------------------------------------------------------------------------- /Interactors/Authentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Interactors/Authentication.swift -------------------------------------------------------------------------------- /Interactors/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Interactors/Info.plist -------------------------------------------------------------------------------- /Interactors/Interactors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Interactors/Interactors.h -------------------------------------------------------------------------------- /Interactors/RoomList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Interactors/RoomList.swift -------------------------------------------------------------------------------- /Interactors/RoomMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Interactors/RoomMessages.swift -------------------------------------------------------------------------------- /Networking/APIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/APIError.swift -------------------------------------------------------------------------------- /Networking/Activity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Activity.swift -------------------------------------------------------------------------------- /Networking/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Client.swift -------------------------------------------------------------------------------- /Networking/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Info.plist -------------------------------------------------------------------------------- /Networking/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Message.swift -------------------------------------------------------------------------------- /Networking/Networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Networking.h -------------------------------------------------------------------------------- /Networking/Room.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Room.swift -------------------------------------------------------------------------------- /Networking/SafeClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/SafeClient.swift -------------------------------------------------------------------------------- /Networking/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Token.swift -------------------------------------------------------------------------------- /Networking/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/User.swift -------------------------------------------------------------------------------- /Networking/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Networking/Utilities.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/README.md -------------------------------------------------------------------------------- /ReactiveGitter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReactiveGitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReactiveGitter.xcodeproj/xcuserdata/srdan.xcuserdatad/xcschemes/ReactiveGitter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter.xcodeproj/xcuserdata/srdan.xcuserdatad/xcschemes/ReactiveGitter.xcscheme -------------------------------------------------------------------------------- /ReactiveGitter.xcodeproj/xcuserdata/srdan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter.xcodeproj/xcuserdata/srdan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ReactiveGitter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/AppDelegate.swift -------------------------------------------------------------------------------- /ReactiveGitter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ReactiveGitter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ReactiveGitter/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/Extensions.swift -------------------------------------------------------------------------------- /ReactiveGitter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/Info.plist -------------------------------------------------------------------------------- /ReactiveGitter/TokenService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/ReactiveGitter/TokenService.swift -------------------------------------------------------------------------------- /Scenes/Authentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/Authentication.swift -------------------------------------------------------------------------------- /Scenes/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/Extensions.swift -------------------------------------------------------------------------------- /Scenes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/Info.plist -------------------------------------------------------------------------------- /Scenes/RoomList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/RoomList.swift -------------------------------------------------------------------------------- /Scenes/RoomMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/RoomMessages.swift -------------------------------------------------------------------------------- /Scenes/Scenes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Scenes/Scenes.h -------------------------------------------------------------------------------- /Views/Cells/MessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/Cells/MessageCell.swift -------------------------------------------------------------------------------- /Views/Cells/RoomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/Cells/RoomCell.swift -------------------------------------------------------------------------------- /Views/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/Info.plist -------------------------------------------------------------------------------- /Views/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/Utilities.swift -------------------------------------------------------------------------------- /Views/View Controllers/Authentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/View Controllers/Authentication.swift -------------------------------------------------------------------------------- /Views/View Controllers/RoomList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/View Controllers/RoomList.swift -------------------------------------------------------------------------------- /Views/View Controllers/RoomMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/View Controllers/RoomMessages.swift -------------------------------------------------------------------------------- /Views/Views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveKit/ReactiveGitter/HEAD/Views/Views.h --------------------------------------------------------------------------------