├── .gitignore ├── .gitmodules ├── Glyphish ├── Glyphish.h ├── Glyphish.swift └── Info.plist ├── README.md ├── Syzygy-Base.xcconfig ├── Syzygy-Conditionals.xcconfig ├── Syzygy-Debug.xcconfig ├── Syzygy-Release.xcconfig ├── Syzygy.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Glyphish.xcscheme ├── SyzygyCore ├── Analytics │ ├── AnalyticEngine.swift │ ├── AnalyticEvent.swift │ ├── Analytics.swift │ └── BasicEvent.swift ├── Atomic.swift ├── Bag.swift ├── Bookmark.swift ├── BookmarkMetadata.swift ├── Boolean.swift ├── Bundle.swift ├── CLLocation.swift ├── Calendar.swift ├── Character.swift ├── Cloning.swift ├── Codable.swift ├── Collection.swift ├── Comparable.swift ├── Concatenation.swift ├── CountedSet.swift ├── Date.swift ├── DateFormatter.swift ├── DateInterval.swift ├── Decimal.swift ├── Dictionary.swift ├── Difference.swift ├── Dispatch.swift ├── Disposable.swift ├── Either.swift ├── Entitlements.h ├── Entitlements.m ├── Entitlements.swift ├── Entitlements~ios.swift ├── Entitlements~macos.swift ├── Exceptions.swift ├── FileMonitor.swift ├── Geometry.swift ├── Geometry~ios.swift ├── Geometry~macos.swift ├── Identifier.swift ├── IndexPath.swift ├── IndexPath~macos.swift ├── Info.plist ├── Interpolator.swift ├── JSON │ ├── Data+JSON.swift │ ├── JSON+Convenience.swift │ ├── JSON+Equatable.swift │ ├── JSON+Expressible.swift │ ├── JSON+Initializers.swift │ ├── JSON+JSONInitializable.swift │ ├── JSON+Literals.swift │ ├── JSON+Serialization.swift │ ├── JSON+Subscript.swift │ ├── JSON.swift │ ├── JSONError.swift │ └── JSONInitializable.swift ├── KeyValueStore.swift ├── Keychain.swift ├── LocalizedString.swift ├── Logging │ ├── DefaultLog.swift │ └── Log.swift ├── Markers.swift ├── Measurement.swift ├── NSObject.swift ├── NSPredicate.swift ├── Newtype.swift ├── Objective-C.h ├── Objective-C.m ├── Option.swift ├── Optional.swift ├── Paths │ ├── AbsolutePath.swift │ ├── Bundle+Path.swift │ ├── FileHandle+Path.swift │ ├── FileManager+Path.swift │ ├── Path.swift │ ├── RelativePath.swift │ ├── TemporaryPath.swift │ └── URL+Path.swift ├── Plist │ ├── Plist+Convenience.swift │ ├── Plist+Convertible.swift │ ├── Plist+Equatable.swift │ ├── Plist+Initializers.swift │ ├── Plist+Literals.swift │ ├── Plist+Serialization.swift │ ├── Plist+Subscript.swift │ └── Plist.swift ├── Predicate │ ├── AndPredicate.swift │ ├── AnyPredicate.swift │ ├── Collection+Predicate.swift │ ├── NSPredicate+Predicate.swift │ ├── NotPredicate.swift │ ├── OrPredicate.swift │ ├── Predicate.swift │ ├── SetAlgebra+Predicate.swift │ └── XorPredicate.swift ├── Properties │ ├── AnyObject+Property.swift │ ├── FileManager+Property.swift │ ├── KVOProperty.swift │ ├── MirroredProperty.swift │ ├── MutableProperty.swift │ ├── NSMetadataQuery+Property.swift │ ├── NSObject+Property.swift │ ├── NotificationCenter+Property.swift │ ├── Property+BookmarkMetadata.swift │ ├── Property+Boolean.swift │ ├── Property+Coalesce.swift │ ├── Property+Collections.swift │ ├── Property+Combine.swift │ ├── Property+Concatenation.swift │ ├── Property+Debug.swift │ ├── Property+Diffs.swift │ ├── Property+Filter.swift │ ├── Property+From.swift │ ├── Property+KeyValueStore.swift │ ├── Property+Map.swift │ ├── Property+Merge.swift │ ├── Property+Optional.swift │ ├── Property+Queue.swift │ ├── Property+Result.swift │ ├── Property+Skip.swift │ ├── Property+Take.swift │ ├── Property+Throttle.swift │ ├── Property+Tickle.swift │ ├── Property+Timer.swift │ ├── Property+Zip.swift │ └── Property.swift ├── QueryController.swift ├── R.swift ├── RandomAccessCollection.swift ├── Range.swift ├── RangeReplaceableCollection.swift ├── Reachability.swift ├── Regex.swift ├── Result.swift ├── Sandbox.swift ├── Scalable.swift ├── Set.swift ├── SetAlgebra.swift ├── Sorting │ ├── AnySorter.swift │ ├── Collection+Sorting.swift │ ├── CombinedSorter.swift │ ├── Comparable+Sorting.swift │ ├── InvertedSorter.swift │ ├── KeyPathSorter.swift │ ├── NSSortDescriptor+Sorting.swift │ ├── Sorting.swift │ └── String+Sorting.swift ├── String+HTML.swift ├── String.swift ├── SyzygyCore.h ├── SyzygyCore.swift ├── SyzygyCore~ios.swift ├── SyzygyCore~macos.swift ├── Timer.swift ├── Trees │ ├── BinaryTree.swift │ ├── TraversalAlgorithms.swift │ └── Tree.swift ├── URL.swift ├── URLRouter.swift ├── URLRouting.swift ├── UTI │ ├── UTI+Defaults.swift │ └── UTI.swift ├── UUID.swift ├── UserDefaults.swift ├── WeakBox.swift ├── iOS │ └── UIDevice.swift └── macOS │ ├── IOKit.h │ ├── IOKit.m │ ├── LaunchServices.swift │ ├── NSMetadataQuery.swift │ ├── Process.swift │ ├── SharedFileList.swift │ ├── System.swift │ ├── _LSSharedFileList.h │ └── _LSSharedFileList.m ├── SyzygyHTTP ├── HTTPSession.swift ├── Header.swift ├── Info.plist ├── Method.swift ├── Request.swift ├── Response.swift ├── Status.swift ├── SyzygyHTTP.h └── SyzygyHTTP.swift ├── SyzygyKit ├── Action.swift ├── AutoLayout.swift ├── BezierPath.swift ├── BezierPath~ios.swift ├── BezierPath~macos.swift ├── Color.swift ├── ColorViewController.swift ├── Color~ios.swift ├── Color~macos.swift ├── Coordinator.swift ├── DataSources │ ├── AnyDataSource.swift │ ├── CompositeDataSource.swift │ ├── ContextualActionHandler~ios.swift │ ├── DataSourceAdapter~ios.swift │ ├── ItemDataSource.swift │ ├── Items │ │ ├── ActionListItem~ios.swift │ │ ├── BasicTextItem~ios.swift │ │ ├── DataSourceItem.swift │ │ ├── DetailEntriesItem~ios.swift │ │ ├── DetailTextItem~ios.swift │ │ ├── LoadingItem~ios.swift │ │ ├── MapItem~ios.swift │ │ ├── MessageTextItem~ios.swift │ │ ├── SeparatorItem~ios.swift │ │ ├── TextItem~ios.swift │ │ └── TitleTextItem~ios.swift │ ├── SegmentedDataSource.swift │ ├── SegmentedDataSourceCell~ios.xib │ ├── SegmentedDataSourceCell~macos.xib │ └── SeparatorDataSource.swift ├── Font.swift ├── GestureRecognizer~ios.swift ├── GestureRecognizer~macos.swift ├── Image.swift ├── Info.plist ├── NSAttributedString.swift ├── Responder~ios.swift ├── Responder~macos.swift ├── Shapes │ ├── Shape.swift │ ├── ShapeView.swift │ ├── ShapeView~ios.swift │ ├── ShapeView~macos.swift │ ├── Shape~ios.swift │ └── Shape~macos.swift ├── SyzygyKit.h ├── SyzygyKit.swift ├── SyzygyKit~ios.swift ├── SyzygyKit~macos.swift ├── SyzygyLineViewController.swift ├── SyzygyLineViewController~ios.swift ├── SyzygyLineViewController~macos.swift ├── SyzygyLoadingViewController.swift ├── SyzygyViewControllerBase.swift ├── SyzygyViewController~ios.swift ├── SyzygyViewController~macos.swift ├── SyzygyView~ios.swift ├── SyzygyView~macos.swift ├── TargetAction.swift ├── TargetAction~ios.swift ├── TargetAction~macos.swift ├── View.swift ├── ViewController.swift ├── ViewSwizzling.h ├── ViewSwizzling.m ├── View~ios.swift ├── View~macos.swift ├── iOS │ ├── Empty.xib │ ├── InfoActionButton.swift │ ├── InfoActionButton.xib │ ├── KeyboardLayoutGuide.swift │ ├── SyzygyContainerViewController.swift │ ├── SyzygyRangeSlider.swift │ ├── SyzygyScrollingContentViewController.swift │ ├── SyzygySearchController.swift │ ├── SyzygySearchDelegate.swift │ ├── SyzygySmallListViewController.swift │ ├── SyzygyStackViewController.swift │ ├── SyzygyTouchDetectionGestureRecognizer.swift │ ├── SyzygyWindowCoordinator.swift │ ├── UIGestureRecognizer+Blocks.swift │ ├── UIImage.swift │ ├── UIPasteboard.swift │ ├── UITableView+Diffs.swift │ ├── UITableView+TableFlip.swift │ ├── UITableViewCell.swift │ ├── UIView.swift │ └── UIViewController.swift └── macOS │ ├── AffineTransform.swift │ ├── Authorization.h │ ├── Authorization.m │ ├── AutosizingTextField.swift │ ├── Empty.xib │ ├── MoveToApplicationsFolder.swift │ ├── NSApplication.swift │ ├── NSBox.swift │ ├── NSCollectionView.swift │ ├── NSEvent.swift │ ├── NSImage.swift │ ├── NSRunningApplication.swift │ ├── NSStackView.swift │ ├── NSTabViewController.swift │ ├── NSTextField.swift │ ├── NSView.swift │ ├── NSViewController.swift │ ├── NSWindow.swift │ ├── NSWindowController.swift │ ├── NSWorkspace+Properties.swift │ ├── SyzygyContainerViewController.swift │ ├── SyzygyListViewController.xib │ ├── SyzygyListViewController~macos.swift │ ├── SyzygySidebarViewController.swift │ └── SyzygySidebarViewController.xib ├── SyzygyLocation ├── CLAuthorizationStatus.swift ├── CLLocationCoordinate2D.swift ├── Info.plist ├── LocationDelegate.swift ├── LocationProvider.swift ├── MKMapItemURL.swift ├── SyzygyLocation.h └── SyzygyLocation.swift └── SyzygyRuntime ├── Class.swift ├── Image.swift ├── Info.plist ├── Method.swift ├── Objective-C ├── class.h ├── class.m ├── instance.h ├── instance.m ├── objc.h ├── objc.m ├── property.h ├── property.m ├── protocol.h ├── protocol.m ├── sel.h ├── sel.m ├── type.h └── type.m ├── Protocol.swift ├── Runtime.swift ├── Selector.swift ├── SyzygyRuntime.h ├── SyzygyRuntime.swift └── Type.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/.gitmodules -------------------------------------------------------------------------------- /Glyphish/Glyphish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Glyphish/Glyphish.h -------------------------------------------------------------------------------- /Glyphish/Glyphish.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Glyphish/Glyphish.swift -------------------------------------------------------------------------------- /Glyphish/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Glyphish/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/README.md -------------------------------------------------------------------------------- /Syzygy-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy-Base.xcconfig -------------------------------------------------------------------------------- /Syzygy-Conditionals.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy-Conditionals.xcconfig -------------------------------------------------------------------------------- /Syzygy-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy-Debug.xcconfig -------------------------------------------------------------------------------- /Syzygy-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy-Release.xcconfig -------------------------------------------------------------------------------- /Syzygy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Syzygy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Syzygy.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Syzygy.xcodeproj/xcshareddata/xcschemes/Glyphish.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/Syzygy.xcodeproj/xcshareddata/xcschemes/Glyphish.xcscheme -------------------------------------------------------------------------------- /SyzygyCore/Analytics/AnalyticEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Analytics/AnalyticEngine.swift -------------------------------------------------------------------------------- /SyzygyCore/Analytics/AnalyticEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Analytics/AnalyticEvent.swift -------------------------------------------------------------------------------- /SyzygyCore/Analytics/Analytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Analytics/Analytics.swift -------------------------------------------------------------------------------- /SyzygyCore/Analytics/BasicEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Analytics/BasicEvent.swift -------------------------------------------------------------------------------- /SyzygyCore/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Atomic.swift -------------------------------------------------------------------------------- /SyzygyCore/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Bag.swift -------------------------------------------------------------------------------- /SyzygyCore/Bookmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Bookmark.swift -------------------------------------------------------------------------------- /SyzygyCore/BookmarkMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/BookmarkMetadata.swift -------------------------------------------------------------------------------- /SyzygyCore/Boolean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Boolean.swift -------------------------------------------------------------------------------- /SyzygyCore/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Bundle.swift -------------------------------------------------------------------------------- /SyzygyCore/CLLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/CLLocation.swift -------------------------------------------------------------------------------- /SyzygyCore/Calendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Calendar.swift -------------------------------------------------------------------------------- /SyzygyCore/Character.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Character.swift -------------------------------------------------------------------------------- /SyzygyCore/Cloning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Cloning.swift -------------------------------------------------------------------------------- /SyzygyCore/Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Codable.swift -------------------------------------------------------------------------------- /SyzygyCore/Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Collection.swift -------------------------------------------------------------------------------- /SyzygyCore/Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Comparable.swift -------------------------------------------------------------------------------- /SyzygyCore/Concatenation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Concatenation.swift -------------------------------------------------------------------------------- /SyzygyCore/CountedSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/CountedSet.swift -------------------------------------------------------------------------------- /SyzygyCore/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Date.swift -------------------------------------------------------------------------------- /SyzygyCore/DateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/DateFormatter.swift -------------------------------------------------------------------------------- /SyzygyCore/DateInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/DateInterval.swift -------------------------------------------------------------------------------- /SyzygyCore/Decimal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Decimal.swift -------------------------------------------------------------------------------- /SyzygyCore/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Dictionary.swift -------------------------------------------------------------------------------- /SyzygyCore/Difference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Difference.swift -------------------------------------------------------------------------------- /SyzygyCore/Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Dispatch.swift -------------------------------------------------------------------------------- /SyzygyCore/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Disposable.swift -------------------------------------------------------------------------------- /SyzygyCore/Either.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Either.swift -------------------------------------------------------------------------------- /SyzygyCore/Entitlements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Entitlements.h -------------------------------------------------------------------------------- /SyzygyCore/Entitlements.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Entitlements.m -------------------------------------------------------------------------------- /SyzygyCore/Entitlements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Entitlements.swift -------------------------------------------------------------------------------- /SyzygyCore/Entitlements~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Entitlements~ios.swift -------------------------------------------------------------------------------- /SyzygyCore/Entitlements~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Entitlements~macos.swift -------------------------------------------------------------------------------- /SyzygyCore/Exceptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Exceptions.swift -------------------------------------------------------------------------------- /SyzygyCore/FileMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/FileMonitor.swift -------------------------------------------------------------------------------- /SyzygyCore/Geometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Geometry.swift -------------------------------------------------------------------------------- /SyzygyCore/Geometry~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Geometry~ios.swift -------------------------------------------------------------------------------- /SyzygyCore/Geometry~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Geometry~macos.swift -------------------------------------------------------------------------------- /SyzygyCore/Identifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Identifier.swift -------------------------------------------------------------------------------- /SyzygyCore/IndexPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/IndexPath.swift -------------------------------------------------------------------------------- /SyzygyCore/IndexPath~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/IndexPath~macos.swift -------------------------------------------------------------------------------- /SyzygyCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Info.plist -------------------------------------------------------------------------------- /SyzygyCore/Interpolator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Interpolator.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/Data+JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/Data+JSON.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Convenience.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Equatable.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Expressible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Expressible.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Initializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Initializers.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+JSONInitializable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+JSONInitializable.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Literals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Literals.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Serialization.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON+Subscript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON+Subscript.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSON.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSONError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSONError.swift -------------------------------------------------------------------------------- /SyzygyCore/JSON/JSONInitializable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/JSON/JSONInitializable.swift -------------------------------------------------------------------------------- /SyzygyCore/KeyValueStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/KeyValueStore.swift -------------------------------------------------------------------------------- /SyzygyCore/Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Keychain.swift -------------------------------------------------------------------------------- /SyzygyCore/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/LocalizedString.swift -------------------------------------------------------------------------------- /SyzygyCore/Logging/DefaultLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Logging/DefaultLog.swift -------------------------------------------------------------------------------- /SyzygyCore/Logging/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Logging/Log.swift -------------------------------------------------------------------------------- /SyzygyCore/Markers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Markers.swift -------------------------------------------------------------------------------- /SyzygyCore/Measurement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Measurement.swift -------------------------------------------------------------------------------- /SyzygyCore/NSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/NSObject.swift -------------------------------------------------------------------------------- /SyzygyCore/NSPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/NSPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Newtype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Newtype.swift -------------------------------------------------------------------------------- /SyzygyCore/Objective-C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Objective-C.h -------------------------------------------------------------------------------- /SyzygyCore/Objective-C.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Objective-C.m -------------------------------------------------------------------------------- /SyzygyCore/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Option.swift -------------------------------------------------------------------------------- /SyzygyCore/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Optional.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/AbsolutePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/AbsolutePath.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/Bundle+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/Bundle+Path.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/FileHandle+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/FileHandle+Path.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/FileManager+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/FileManager+Path.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/Path.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/RelativePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/RelativePath.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/TemporaryPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/TemporaryPath.swift -------------------------------------------------------------------------------- /SyzygyCore/Paths/URL+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Paths/URL+Path.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Convenience.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Convertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Convertible.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Equatable.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Initializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Initializers.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Literals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Literals.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Serialization.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist+Subscript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist+Subscript.swift -------------------------------------------------------------------------------- /SyzygyCore/Plist/Plist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Plist/Plist.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/AndPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/AndPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/AnyPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/AnyPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/Collection+Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/Collection+Predicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/NSPredicate+Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/NSPredicate+Predicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/NotPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/NotPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/OrPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/OrPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/Predicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/SetAlgebra+Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/SetAlgebra+Predicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Predicate/XorPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Predicate/XorPredicate.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/AnyObject+Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/AnyObject+Property.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/FileManager+Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/FileManager+Property.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/KVOProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/KVOProperty.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/MirroredProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/MirroredProperty.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/MutableProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/MutableProperty.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/NSMetadataQuery+Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/NSMetadataQuery+Property.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/NSObject+Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/NSObject+Property.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/NotificationCenter+Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/NotificationCenter+Property.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+BookmarkMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+BookmarkMetadata.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Boolean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Boolean.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Coalesce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Coalesce.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Collections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Collections.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Combine.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Concatenation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Concatenation.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Debug.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Diffs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Diffs.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Filter.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+From.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+From.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+KeyValueStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+KeyValueStore.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Map.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Merge.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Optional.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Queue.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Result.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Skip.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Take.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Throttle.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Tickle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Tickle.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Timer.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property+Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property+Zip.swift -------------------------------------------------------------------------------- /SyzygyCore/Properties/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Properties/Property.swift -------------------------------------------------------------------------------- /SyzygyCore/QueryController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/QueryController.swift -------------------------------------------------------------------------------- /SyzygyCore/R.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/R.swift -------------------------------------------------------------------------------- /SyzygyCore/RandomAccessCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/RandomAccessCollection.swift -------------------------------------------------------------------------------- /SyzygyCore/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Range.swift -------------------------------------------------------------------------------- /SyzygyCore/RangeReplaceableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/RangeReplaceableCollection.swift -------------------------------------------------------------------------------- /SyzygyCore/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Reachability.swift -------------------------------------------------------------------------------- /SyzygyCore/Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Regex.swift -------------------------------------------------------------------------------- /SyzygyCore/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Result.swift -------------------------------------------------------------------------------- /SyzygyCore/Sandbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sandbox.swift -------------------------------------------------------------------------------- /SyzygyCore/Scalable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Scalable.swift -------------------------------------------------------------------------------- /SyzygyCore/Set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Set.swift -------------------------------------------------------------------------------- /SyzygyCore/SetAlgebra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/SetAlgebra.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/AnySorter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/AnySorter.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/Collection+Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/Collection+Sorting.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/CombinedSorter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/CombinedSorter.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/Comparable+Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/Comparable+Sorting.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/InvertedSorter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/InvertedSorter.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/KeyPathSorter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/KeyPathSorter.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/NSSortDescriptor+Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/NSSortDescriptor+Sorting.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/Sorting.swift -------------------------------------------------------------------------------- /SyzygyCore/Sorting/String+Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Sorting/String+Sorting.swift -------------------------------------------------------------------------------- /SyzygyCore/String+HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/String+HTML.swift -------------------------------------------------------------------------------- /SyzygyCore/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/String.swift -------------------------------------------------------------------------------- /SyzygyCore/SyzygyCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/SyzygyCore.h -------------------------------------------------------------------------------- /SyzygyCore/SyzygyCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/SyzygyCore.swift -------------------------------------------------------------------------------- /SyzygyCore/SyzygyCore~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/SyzygyCore~ios.swift -------------------------------------------------------------------------------- /SyzygyCore/SyzygyCore~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/SyzygyCore~macos.swift -------------------------------------------------------------------------------- /SyzygyCore/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Timer.swift -------------------------------------------------------------------------------- /SyzygyCore/Trees/BinaryTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Trees/BinaryTree.swift -------------------------------------------------------------------------------- /SyzygyCore/Trees/TraversalAlgorithms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Trees/TraversalAlgorithms.swift -------------------------------------------------------------------------------- /SyzygyCore/Trees/Tree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/Trees/Tree.swift -------------------------------------------------------------------------------- /SyzygyCore/URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/URL.swift -------------------------------------------------------------------------------- /SyzygyCore/URLRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/URLRouter.swift -------------------------------------------------------------------------------- /SyzygyCore/URLRouting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/URLRouting.swift -------------------------------------------------------------------------------- /SyzygyCore/UTI/UTI+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/UTI/UTI+Defaults.swift -------------------------------------------------------------------------------- /SyzygyCore/UTI/UTI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/UTI/UTI.swift -------------------------------------------------------------------------------- /SyzygyCore/UUID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/UUID.swift -------------------------------------------------------------------------------- /SyzygyCore/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/UserDefaults.swift -------------------------------------------------------------------------------- /SyzygyCore/WeakBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/WeakBox.swift -------------------------------------------------------------------------------- /SyzygyCore/iOS/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/iOS/UIDevice.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/IOKit.h -------------------------------------------------------------------------------- /SyzygyCore/macOS/IOKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/IOKit.m -------------------------------------------------------------------------------- /SyzygyCore/macOS/LaunchServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/LaunchServices.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/NSMetadataQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/NSMetadataQuery.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/Process.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/SharedFileList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/SharedFileList.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/System.swift -------------------------------------------------------------------------------- /SyzygyCore/macOS/_LSSharedFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/_LSSharedFileList.h -------------------------------------------------------------------------------- /SyzygyCore/macOS/_LSSharedFileList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyCore/macOS/_LSSharedFileList.m -------------------------------------------------------------------------------- /SyzygyHTTP/HTTPSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/HTTPSession.swift -------------------------------------------------------------------------------- /SyzygyHTTP/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Header.swift -------------------------------------------------------------------------------- /SyzygyHTTP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Info.plist -------------------------------------------------------------------------------- /SyzygyHTTP/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Method.swift -------------------------------------------------------------------------------- /SyzygyHTTP/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Request.swift -------------------------------------------------------------------------------- /SyzygyHTTP/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Response.swift -------------------------------------------------------------------------------- /SyzygyHTTP/Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/Status.swift -------------------------------------------------------------------------------- /SyzygyHTTP/SyzygyHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/SyzygyHTTP.h -------------------------------------------------------------------------------- /SyzygyHTTP/SyzygyHTTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyHTTP/SyzygyHTTP.swift -------------------------------------------------------------------------------- /SyzygyKit/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Action.swift -------------------------------------------------------------------------------- /SyzygyKit/AutoLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/AutoLayout.swift -------------------------------------------------------------------------------- /SyzygyKit/BezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/BezierPath.swift -------------------------------------------------------------------------------- /SyzygyKit/BezierPath~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/BezierPath~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/BezierPath~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/BezierPath~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Color.swift -------------------------------------------------------------------------------- /SyzygyKit/ColorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/ColorViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/Color~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Color~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/Color~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Color~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Coordinator.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/AnyDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/AnyDataSource.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/CompositeDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/CompositeDataSource.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/ContextualActionHandler~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/ContextualActionHandler~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/DataSourceAdapter~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/DataSourceAdapter~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/ItemDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/ItemDataSource.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/ActionListItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/ActionListItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/BasicTextItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/BasicTextItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/DataSourceItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/DataSourceItem.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/DetailEntriesItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/DetailEntriesItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/DetailTextItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/DetailTextItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/LoadingItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/LoadingItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/MapItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/MapItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/MessageTextItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/MessageTextItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/SeparatorItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/SeparatorItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/TextItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/TextItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/Items/TitleTextItem~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/Items/TitleTextItem~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/SegmentedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/SegmentedDataSource.swift -------------------------------------------------------------------------------- /SyzygyKit/DataSources/SegmentedDataSourceCell~ios.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/SegmentedDataSourceCell~ios.xib -------------------------------------------------------------------------------- /SyzygyKit/DataSources/SegmentedDataSourceCell~macos.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/SegmentedDataSourceCell~macos.xib -------------------------------------------------------------------------------- /SyzygyKit/DataSources/SeparatorDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/DataSources/SeparatorDataSource.swift -------------------------------------------------------------------------------- /SyzygyKit/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Font.swift -------------------------------------------------------------------------------- /SyzygyKit/GestureRecognizer~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/GestureRecognizer~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/GestureRecognizer~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/GestureRecognizer~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Image.swift -------------------------------------------------------------------------------- /SyzygyKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Info.plist -------------------------------------------------------------------------------- /SyzygyKit/NSAttributedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/NSAttributedString.swift -------------------------------------------------------------------------------- /SyzygyKit/Responder~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Responder~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/Responder~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Responder~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/Shape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/Shape.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/ShapeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/ShapeView.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/ShapeView~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/ShapeView~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/ShapeView~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/ShapeView~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/Shape~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/Shape~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/Shapes/Shape~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/Shapes/Shape~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyKit.h -------------------------------------------------------------------------------- /SyzygyKit/SyzygyKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyKit.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyKit~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyKit~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyKit~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyKit~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyLineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyLineViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyLineViewController~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyLineViewController~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyLineViewController~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyLineViewController~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyLoadingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyLoadingViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyViewControllerBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyViewControllerBase.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyViewController~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyViewController~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyViewController~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyViewController~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyView~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyView~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/SyzygyView~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/SyzygyView~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/TargetAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/TargetAction.swift -------------------------------------------------------------------------------- /SyzygyKit/TargetAction~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/TargetAction~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/TargetAction~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/TargetAction~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/View.swift -------------------------------------------------------------------------------- /SyzygyKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/ViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/ViewSwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/ViewSwizzling.h -------------------------------------------------------------------------------- /SyzygyKit/ViewSwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/ViewSwizzling.m -------------------------------------------------------------------------------- /SyzygyKit/View~ios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/View~ios.swift -------------------------------------------------------------------------------- /SyzygyKit/View~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/View~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/Empty.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/Empty.xib -------------------------------------------------------------------------------- /SyzygyKit/iOS/InfoActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/InfoActionButton.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/InfoActionButton.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/InfoActionButton.xib -------------------------------------------------------------------------------- /SyzygyKit/iOS/KeyboardLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/KeyboardLayoutGuide.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyContainerViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyRangeSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyRangeSlider.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyScrollingContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyScrollingContentViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygySearchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygySearchController.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygySearchDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygySearchDelegate.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygySmallListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygySmallListViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyStackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyStackViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyTouchDetectionGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyTouchDetectionGestureRecognizer.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/SyzygyWindowCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/SyzygyWindowCoordinator.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UIGestureRecognizer+Blocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UIGestureRecognizer+Blocks.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UIImage.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UIPasteboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UIPasteboard.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UITableView+Diffs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UITableView+Diffs.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UITableView+TableFlip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UITableView+TableFlip.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UITableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UITableViewCell.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UIView.swift -------------------------------------------------------------------------------- /SyzygyKit/iOS/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/iOS/UIViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/AffineTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/AffineTransform.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/Authorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/Authorization.h -------------------------------------------------------------------------------- /SyzygyKit/macOS/Authorization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/Authorization.m -------------------------------------------------------------------------------- /SyzygyKit/macOS/AutosizingTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/AutosizingTextField.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/Empty.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/Empty.xib -------------------------------------------------------------------------------- /SyzygyKit/macOS/MoveToApplicationsFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/MoveToApplicationsFolder.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSApplication.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSBox.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSCollectionView.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSEvent.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSImage.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSRunningApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSRunningApplication.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSStackView.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSTabViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSTextField.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSView.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSWindow.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSWindowController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/NSWorkspace+Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/NSWorkspace+Properties.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/SyzygyContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/SyzygyContainerViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/SyzygyListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/SyzygyListViewController.xib -------------------------------------------------------------------------------- /SyzygyKit/macOS/SyzygyListViewController~macos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/SyzygyListViewController~macos.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/SyzygySidebarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/SyzygySidebarViewController.swift -------------------------------------------------------------------------------- /SyzygyKit/macOS/SyzygySidebarViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyKit/macOS/SyzygySidebarViewController.xib -------------------------------------------------------------------------------- /SyzygyLocation/CLAuthorizationStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/CLAuthorizationStatus.swift -------------------------------------------------------------------------------- /SyzygyLocation/CLLocationCoordinate2D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/CLLocationCoordinate2D.swift -------------------------------------------------------------------------------- /SyzygyLocation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/Info.plist -------------------------------------------------------------------------------- /SyzygyLocation/LocationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/LocationDelegate.swift -------------------------------------------------------------------------------- /SyzygyLocation/LocationProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/LocationProvider.swift -------------------------------------------------------------------------------- /SyzygyLocation/MKMapItemURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/MKMapItemURL.swift -------------------------------------------------------------------------------- /SyzygyLocation/SyzygyLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/SyzygyLocation.h -------------------------------------------------------------------------------- /SyzygyLocation/SyzygyLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyLocation/SyzygyLocation.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Class.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Image.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Info.plist -------------------------------------------------------------------------------- /SyzygyRuntime/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Method.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/class.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/class.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/instance.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/instance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/instance.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/objc.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/objc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/objc.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/property.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/property.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/protocol.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/protocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/protocol.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/sel.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/sel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/sel.m -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/type.h -------------------------------------------------------------------------------- /SyzygyRuntime/Objective-C/type.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Objective-C/type.m -------------------------------------------------------------------------------- /SyzygyRuntime/Protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Protocol.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Runtime.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Selector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Selector.swift -------------------------------------------------------------------------------- /SyzygyRuntime/SyzygyRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/SyzygyRuntime.h -------------------------------------------------------------------------------- /SyzygyRuntime/SyzygyRuntime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/SyzygyRuntime.swift -------------------------------------------------------------------------------- /SyzygyRuntime/Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davedelong/Syzygy/HEAD/SyzygyRuntime/Type.swift --------------------------------------------------------------------------------