├── .gitignore ├── .gitmodules ├── .swift-version ├── .travis.yml ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── FlexibleDiff.podspec ├── FlexibleDiff.xcodeproj ├── FlexibleDiff.xcworkspace │ └── contents.xcworkspacedata ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── FlexibleDiff-iOS.xcscheme │ ├── FlexibleDiff-macOS.xcscheme │ └── FlexibleDiff-tvOS.xcscheme ├── FlexibleDiff.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── FlexibleDiff ├── Changeset.swift ├── FlexibleDiff.h ├── Info.plist ├── SectionedChangeset.swift └── Snapshot.swift ├── FlexibleDiffTests ├── ChangesetSpec.swift ├── Delta+NimbleMatcher.swift ├── Info.plist ├── ReproducibilityTest.swift └── SectionedChangesetSpec.swift ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── Package@swift-5.swift ├── README.md ├── WordList ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── RootBuilder.swift ├── Word.swift ├── WordCell.swift ├── WordListBuilder.swift ├── WordListFlowController.swift ├── WordListViewController.swift └── WordListViewModel.swift └── script └── build /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "jspahrsummers/xcconfigs" 2 | -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /FlexibleDiff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.podspec -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/FlexibleDiff.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/FlexibleDiff.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-iOS.xcscheme -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-macOS.xcscheme -------------------------------------------------------------------------------- /FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcodeproj/xcshareddata/xcschemes/FlexibleDiff-tvOS.xcscheme -------------------------------------------------------------------------------- /FlexibleDiff.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlexibleDiff.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FlexibleDiff/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff/Changeset.swift -------------------------------------------------------------------------------- /FlexibleDiff/FlexibleDiff.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FlexibleDiff/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff/Info.plist -------------------------------------------------------------------------------- /FlexibleDiff/SectionedChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff/SectionedChangeset.swift -------------------------------------------------------------------------------- /FlexibleDiff/Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiff/Snapshot.swift -------------------------------------------------------------------------------- /FlexibleDiffTests/ChangesetSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiffTests/ChangesetSpec.swift -------------------------------------------------------------------------------- /FlexibleDiffTests/Delta+NimbleMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiffTests/Delta+NimbleMatcher.swift -------------------------------------------------------------------------------- /FlexibleDiffTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiffTests/Info.plist -------------------------------------------------------------------------------- /FlexibleDiffTests/ReproducibilityTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiffTests/ReproducibilityTest.swift -------------------------------------------------------------------------------- /FlexibleDiffTests/SectionedChangesetSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/FlexibleDiffTests/SectionedChangesetSpec.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/Package@swift-5.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/README.md -------------------------------------------------------------------------------- /WordList/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/AppDelegate.swift -------------------------------------------------------------------------------- /WordList/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WordList/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WordList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/Info.plist -------------------------------------------------------------------------------- /WordList/RootBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/RootBuilder.swift -------------------------------------------------------------------------------- /WordList/Word.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/Word.swift -------------------------------------------------------------------------------- /WordList/WordCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/WordCell.swift -------------------------------------------------------------------------------- /WordList/WordListBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/WordListBuilder.swift -------------------------------------------------------------------------------- /WordList/WordListFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/WordListFlowController.swift -------------------------------------------------------------------------------- /WordList/WordListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/WordListViewController.swift -------------------------------------------------------------------------------- /WordList/WordListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/WordList/WordListViewModel.swift -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RACCommunity/FlexibleDiff/HEAD/script/build --------------------------------------------------------------------------------