├── .github └── workflows │ ├── build-TogglesDemo.yml │ ├── publish-release.yml │ └── run-tests.yml ├── .gitignore ├── .spi.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ ├── xcbaselines │ └── TogglesTests.xcbaseline │ │ ├── 20BB4BFB-4506-454D-89F7-01C6620609D0.plist │ │ ├── 391F03CA-63C7-4BE7-9FD2-5916A771F3C0.plist │ │ ├── 5A1B4C73-4DD0-432A-A940-F7AE5825363C.plist │ │ ├── 83B52778-1199-49FE-8068-F555CA2C1FEC.plist │ │ ├── F79AD710-29DA-41E1-BDC9-AE882DF0B60D.plist │ │ └── Info.plist │ └── xcschemes │ └── Toggles.xcscheme ├── DocC.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Resources ├── logo-black.png ├── logo-color.png └── logo-no-background.png ├── Sources ├── Ciphers │ └── ChaCha20Poly1305.swift ├── Extensions │ ├── Dictionary+Toggles.swift │ ├── Group+Identifiable.swift │ ├── Group+Utilities.swift │ ├── Object │ │ ├── Object+Codable.swift │ │ ├── Object+Equatable.swift │ │ ├── ObjectSupportedType+Accessors.swift │ │ ├── ObjectSupportedType+Codable.swift │ │ ├── ObjectSupportedType+Equatable.swift │ │ ├── ObjectSupportedType+Utilities.swift │ │ └── String+Object.swift │ ├── String+Bool.swift │ ├── String+ValidJSON.swift │ ├── Toggle+Codable.swift │ ├── Toggle+Comparable.swift │ ├── Toggle+Identifiable.swift │ ├── Toggle+Utilities.swift │ ├── Value+Accessors.swift │ ├── Value+Semi-Equatable.swift │ └── Value+Utilities.swift ├── Models │ ├── Datasource.swift │ ├── Group.swift │ ├── Metadata.swift │ ├── Object.swift │ ├── ObjectSupportedType.swift │ ├── Toggle.swift │ ├── Value.swift │ └── Variable.swift ├── ObservableObjects │ └── ToggleObservable.swift ├── Protocols │ ├── Ciphering.swift │ ├── Logger.swift │ ├── MutableValueProvider.swift │ ├── Publishing.swift │ ├── Reacting.swift │ └── ValueProvider.swift ├── Providers │ ├── DefaultValueProvider.swift │ ├── InMemoryValueProvider.swift │ ├── LocalValueProvider.swift │ └── PersistentValueProvider.swift ├── Resources │ └── PreviewDatasource.json ├── ToggleManager │ ├── ToggleManager+Caching.swift │ ├── ToggleManager+Ciphering.swift │ ├── ToggleManager+Logging.swift │ ├── ToggleManager+Overrides.swift │ ├── ToggleManager+Publishing.swift │ ├── ToggleManager+Reacting.swift │ ├── ToggleManager+Trace.swift │ └── ToggleManager.swift ├── Toggles.docc │ ├── Articles │ │ ├── Core.md │ │ ├── Toggles.md │ │ ├── Tools.md │ │ └── UI.md │ └── Resources │ │ ├── DemoApp_iPad.png │ │ ├── JustTweakMigrator_arguments.png │ │ ├── ToggleCipher_decrypt_arguments.png │ │ ├── ToggleCipher_encrypt_arguments.png │ │ └── ToggleGen_arguments.png ├── Utilities │ ├── CipherConfiguration.swift │ ├── GroupLoader.swift │ ├── InputValidationHelper.swift │ ├── SearchFilter.swift │ ├── TogglesValidator.swift │ └── ValueCache.swift └── Views │ ├── ToggleDetailView │ ├── BooleanOverrideControl.swift │ ├── ExpandedValueView.swift │ ├── LiveValueSection.swift │ ├── MetadataSection.swift │ ├── OverrideSection.swift │ ├── ProviderStackSection.swift │ ├── TextOverrideControl.swift │ └── ToggleDetailView.swift │ └── TogglesView │ ├── ToggleRow.swift │ └── TogglesView.swift ├── Tests ├── Extensions │ └── Bundle+Tests.swift ├── Resources │ ├── TestDatasource.json │ ├── TestDatasourceWithDuplicateVariables.json │ └── TestDatasourceWithNoMetadata.json ├── Suites │ ├── Ciphers │ │ └── ChaCha20Poly1305Tests.swift │ ├── Extensions │ │ ├── Dictionary+TogglesTests.swift │ │ ├── Group+IdentifiableTests.swift │ │ ├── Group+UtilitiesTests.swift │ │ ├── String+BoolTests.swift │ │ ├── Toggle+CodableTests.swift │ │ ├── Toggle+ComparableTests.swift │ │ ├── Toggle+IdentifiableTests.swift │ │ ├── Toggle+UtilitiesTests.swift │ │ ├── Value+AccessorsTests.swift │ │ └── Value+UtilitiesTests.swift │ ├── Models │ │ └── ObjectTests.swift │ ├── ObservableObjects │ │ └── ToggleObservableTests.swift │ ├── Providers │ │ ├── DefaultValueProviderTests.swift │ │ ├── InMemoryValueProviderTests.swift │ │ ├── LocalValueProviderTests.swift │ │ └── PersistentValueProviderTests.swift │ ├── ToggleManager │ │ ├── ToggleManager+CachingTests.swift │ │ ├── ToggleManager+CipheringTests.swift │ │ ├── ToggleManager+ErrorLoggingTests.swift │ │ ├── ToggleManager+OverridesTests.swift │ │ ├── ToggleManager+PublishingTests.swift │ │ ├── ToggleManager+ReactingTests.swift │ │ ├── ToggleManager+SkipOptionsTests.swift │ │ ├── ToggleManager+TraceTests.swift │ │ └── ToggleManagerTests.swift │ └── Utilities │ │ ├── GroupLoaderTests.swift │ │ ├── InputValidationHelperTests.swift │ │ ├── SearchFilterTests.swift │ │ ├── TogglesValidatorTests.swift │ │ └── ValueCacheTests.swift └── Utilities │ ├── CipherConfiguration+Defaults.swift │ ├── MockRemoteValueProvider.swift │ ├── SingleValueMockProvider.swift │ └── ToggleFactory.swift └── TogglesDemo ├── TogglesDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── TogglesDemo.xcscheme └── TogglesDemo ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── GeneratedCode ├── ToggleAccessor.swift └── ToggleVariables.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Resources ├── 10kEntriesDemoDatasource.json └── DemoDatasource.json └── Sources ├── CipherConfiguration+Defaults.swift ├── DemoConfiguration.swift ├── DemoView.swift ├── Providers └── RemoteValueProvider.swift ├── TogglesDemoApp.swift └── Views ├── RemoteValueProviderView.swift ├── ToggleAccessorView.swift └── ToggleObservablesView.swift /.github/workflows/build-TogglesDemo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.github/workflows/build-TogglesDemo.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/20BB4BFB-4506-454D-89F7-01C6620609D0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/20BB4BFB-4506-454D-89F7-01C6620609D0.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/391F03CA-63C7-4BE7-9FD2-5916A771F3C0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/391F03CA-63C7-4BE7-9FD2-5916A771F3C0.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/5A1B4C73-4DD0-432A-A940-F7AE5825363C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/5A1B4C73-4DD0-432A-A940-F7AE5825363C.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/83B52778-1199-49FE-8068-F555CA2C1FEC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/83B52778-1199-49FE-8068-F555CA2C1FEC.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/F79AD710-29DA-41E1-BDC9-AE882DF0B60D.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/F79AD710-29DA-41E1-BDC9-AE882DF0B60D.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcbaselines/TogglesTests.xcbaseline/Info.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Toggles.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Toggles.xcscheme -------------------------------------------------------------------------------- /DocC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/DocC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/README.md -------------------------------------------------------------------------------- /Resources/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Resources/logo-black.png -------------------------------------------------------------------------------- /Resources/logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Resources/logo-color.png -------------------------------------------------------------------------------- /Resources/logo-no-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Resources/logo-no-background.png -------------------------------------------------------------------------------- /Sources/Ciphers/ChaCha20Poly1305.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Ciphers/ChaCha20Poly1305.swift -------------------------------------------------------------------------------- /Sources/Extensions/Dictionary+Toggles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Dictionary+Toggles.swift -------------------------------------------------------------------------------- /Sources/Extensions/Group+Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Group+Identifiable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Group+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Group+Utilities.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/Object+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/Object+Codable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/Object+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/Object+Equatable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/ObjectSupportedType+Accessors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/ObjectSupportedType+Accessors.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/ObjectSupportedType+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/ObjectSupportedType+Codable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/ObjectSupportedType+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/ObjectSupportedType+Equatable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/ObjectSupportedType+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/ObjectSupportedType+Utilities.swift -------------------------------------------------------------------------------- /Sources/Extensions/Object/String+Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Object/String+Object.swift -------------------------------------------------------------------------------- /Sources/Extensions/String+Bool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/String+Bool.swift -------------------------------------------------------------------------------- /Sources/Extensions/String+ValidJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/String+ValidJSON.swift -------------------------------------------------------------------------------- /Sources/Extensions/Toggle+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Toggle+Codable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Toggle+Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Toggle+Comparable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Toggle+Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Toggle+Identifiable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Toggle+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Toggle+Utilities.swift -------------------------------------------------------------------------------- /Sources/Extensions/Value+Accessors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Value+Accessors.swift -------------------------------------------------------------------------------- /Sources/Extensions/Value+Semi-Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Value+Semi-Equatable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Value+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Extensions/Value+Utilities.swift -------------------------------------------------------------------------------- /Sources/Models/Datasource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Datasource.swift -------------------------------------------------------------------------------- /Sources/Models/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Group.swift -------------------------------------------------------------------------------- /Sources/Models/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Metadata.swift -------------------------------------------------------------------------------- /Sources/Models/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Object.swift -------------------------------------------------------------------------------- /Sources/Models/ObjectSupportedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/ObjectSupportedType.swift -------------------------------------------------------------------------------- /Sources/Models/Toggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Toggle.swift -------------------------------------------------------------------------------- /Sources/Models/Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Value.swift -------------------------------------------------------------------------------- /Sources/Models/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Models/Variable.swift -------------------------------------------------------------------------------- /Sources/ObservableObjects/ToggleObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ObservableObjects/ToggleObservable.swift -------------------------------------------------------------------------------- /Sources/Protocols/Ciphering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/Ciphering.swift -------------------------------------------------------------------------------- /Sources/Protocols/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/Logger.swift -------------------------------------------------------------------------------- /Sources/Protocols/MutableValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/MutableValueProvider.swift -------------------------------------------------------------------------------- /Sources/Protocols/Publishing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/Publishing.swift -------------------------------------------------------------------------------- /Sources/Protocols/Reacting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/Reacting.swift -------------------------------------------------------------------------------- /Sources/Protocols/ValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Protocols/ValueProvider.swift -------------------------------------------------------------------------------- /Sources/Providers/DefaultValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Providers/DefaultValueProvider.swift -------------------------------------------------------------------------------- /Sources/Providers/InMemoryValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Providers/InMemoryValueProvider.swift -------------------------------------------------------------------------------- /Sources/Providers/LocalValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Providers/LocalValueProvider.swift -------------------------------------------------------------------------------- /Sources/Providers/PersistentValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Providers/PersistentValueProvider.swift -------------------------------------------------------------------------------- /Sources/Resources/PreviewDatasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Resources/PreviewDatasource.json -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Caching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Caching.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Ciphering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Ciphering.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Logging.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Overrides.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Overrides.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Publishing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Publishing.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Reacting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Reacting.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager+Trace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager+Trace.swift -------------------------------------------------------------------------------- /Sources/ToggleManager/ToggleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/ToggleManager/ToggleManager.swift -------------------------------------------------------------------------------- /Sources/Toggles.docc/Articles/Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Articles/Core.md -------------------------------------------------------------------------------- /Sources/Toggles.docc/Articles/Toggles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Articles/Toggles.md -------------------------------------------------------------------------------- /Sources/Toggles.docc/Articles/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Articles/Tools.md -------------------------------------------------------------------------------- /Sources/Toggles.docc/Articles/UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Articles/UI.md -------------------------------------------------------------------------------- /Sources/Toggles.docc/Resources/DemoApp_iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Resources/DemoApp_iPad.png -------------------------------------------------------------------------------- /Sources/Toggles.docc/Resources/JustTweakMigrator_arguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Resources/JustTweakMigrator_arguments.png -------------------------------------------------------------------------------- /Sources/Toggles.docc/Resources/ToggleCipher_decrypt_arguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Resources/ToggleCipher_decrypt_arguments.png -------------------------------------------------------------------------------- /Sources/Toggles.docc/Resources/ToggleCipher_encrypt_arguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Resources/ToggleCipher_encrypt_arguments.png -------------------------------------------------------------------------------- /Sources/Toggles.docc/Resources/ToggleGen_arguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Toggles.docc/Resources/ToggleGen_arguments.png -------------------------------------------------------------------------------- /Sources/Utilities/CipherConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/CipherConfiguration.swift -------------------------------------------------------------------------------- /Sources/Utilities/GroupLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/GroupLoader.swift -------------------------------------------------------------------------------- /Sources/Utilities/InputValidationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/InputValidationHelper.swift -------------------------------------------------------------------------------- /Sources/Utilities/SearchFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/SearchFilter.swift -------------------------------------------------------------------------------- /Sources/Utilities/TogglesValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/TogglesValidator.swift -------------------------------------------------------------------------------- /Sources/Utilities/ValueCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Utilities/ValueCache.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/BooleanOverrideControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/BooleanOverrideControl.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/ExpandedValueView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/ExpandedValueView.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/LiveValueSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/LiveValueSection.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/MetadataSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/MetadataSection.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/OverrideSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/OverrideSection.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/ProviderStackSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/ProviderStackSection.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/TextOverrideControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/TextOverrideControl.swift -------------------------------------------------------------------------------- /Sources/Views/ToggleDetailView/ToggleDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/ToggleDetailView/ToggleDetailView.swift -------------------------------------------------------------------------------- /Sources/Views/TogglesView/ToggleRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/TogglesView/ToggleRow.swift -------------------------------------------------------------------------------- /Sources/Views/TogglesView/TogglesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Sources/Views/TogglesView/TogglesView.swift -------------------------------------------------------------------------------- /Tests/Extensions/Bundle+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Extensions/Bundle+Tests.swift -------------------------------------------------------------------------------- /Tests/Resources/TestDatasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Resources/TestDatasource.json -------------------------------------------------------------------------------- /Tests/Resources/TestDatasourceWithDuplicateVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Resources/TestDatasourceWithDuplicateVariables.json -------------------------------------------------------------------------------- /Tests/Resources/TestDatasourceWithNoMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Resources/TestDatasourceWithNoMetadata.json -------------------------------------------------------------------------------- /Tests/Suites/Ciphers/ChaCha20Poly1305Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Ciphers/ChaCha20Poly1305Tests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Dictionary+TogglesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Dictionary+TogglesTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Group+IdentifiableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Group+IdentifiableTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Group+UtilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Group+UtilitiesTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/String+BoolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/String+BoolTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Toggle+CodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Toggle+CodableTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Toggle+ComparableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Toggle+ComparableTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Toggle+IdentifiableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Toggle+IdentifiableTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Toggle+UtilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Toggle+UtilitiesTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Value+AccessorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Value+AccessorsTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Extensions/Value+UtilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Extensions/Value+UtilitiesTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Models/ObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Models/ObjectTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ObservableObjects/ToggleObservableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ObservableObjects/ToggleObservableTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Providers/DefaultValueProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Providers/DefaultValueProviderTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Providers/InMemoryValueProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Providers/InMemoryValueProviderTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Providers/LocalValueProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Providers/LocalValueProviderTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Providers/PersistentValueProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Providers/PersistentValueProviderTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+CachingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+CachingTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+CipheringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+CipheringTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+ErrorLoggingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+ErrorLoggingTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+OverridesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+OverridesTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+PublishingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+PublishingTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+ReactingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+ReactingTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+SkipOptionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+SkipOptionsTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManager+TraceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManager+TraceTests.swift -------------------------------------------------------------------------------- /Tests/Suites/ToggleManager/ToggleManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/ToggleManager/ToggleManagerTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Utilities/GroupLoaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Utilities/GroupLoaderTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Utilities/InputValidationHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Utilities/InputValidationHelperTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Utilities/SearchFilterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Utilities/SearchFilterTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Utilities/TogglesValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Utilities/TogglesValidatorTests.swift -------------------------------------------------------------------------------- /Tests/Suites/Utilities/ValueCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Suites/Utilities/ValueCacheTests.swift -------------------------------------------------------------------------------- /Tests/Utilities/CipherConfiguration+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Utilities/CipherConfiguration+Defaults.swift -------------------------------------------------------------------------------- /Tests/Utilities/MockRemoteValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Utilities/MockRemoteValueProvider.swift -------------------------------------------------------------------------------- /Tests/Utilities/SingleValueMockProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Utilities/SingleValueMockProvider.swift -------------------------------------------------------------------------------- /Tests/Utilities/ToggleFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/Tests/Utilities/ToggleFactory.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo.xcodeproj/xcshareddata/xcschemes/TogglesDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo.xcodeproj/xcshareddata/xcschemes/TogglesDemo.xcscheme -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/GeneratedCode/ToggleAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/GeneratedCode/ToggleAccessor.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/GeneratedCode/ToggleVariables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/GeneratedCode/ToggleVariables.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Resources/10kEntriesDemoDatasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Resources/10kEntriesDemoDatasource.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Resources/DemoDatasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Resources/DemoDatasource.json -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/CipherConfiguration+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/CipherConfiguration+Defaults.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/DemoConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/DemoConfiguration.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/DemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/DemoView.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/Providers/RemoteValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/Providers/RemoteValueProvider.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/TogglesDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/TogglesDemoApp.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/Views/RemoteValueProviderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/Views/RemoteValueProviderView.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/Views/ToggleAccessorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/Views/ToggleAccessorView.swift -------------------------------------------------------------------------------- /TogglesDemo/TogglesDemo/Sources/Views/ToggleObservablesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TogglesPlatform/Toggles/HEAD/TogglesDemo/TogglesDemo/Sources/Views/ToggleObservablesView.swift --------------------------------------------------------------------------------