├── .dir-locals.el ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── advanced-issue-labeler.yml ├── auto_assign.yml ├── no-response.yml └── workflows │ ├── Issue-Needs-Attention.yml │ ├── auto-assign.yml │ ├── build-binaries.yml │ ├── build-pr.yml │ ├── check-changelog.yml │ ├── issue-labeler.yml │ ├── lock-threads.yml │ ├── master-push.yml │ ├── no-response.yml │ └── publish-release.yml ├── .gitignore ├── .ruby-version ├── .swiftlint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Carthage └── Realm.xcworkspace │ └── contents.xcworkspacedata ├── Configuration ├── Base.xcconfig ├── Debug.xcconfig ├── ObjectServerTests.xcconfig ├── Realm │ ├── PrivateSymbols.txt │ ├── Realm.xcconfig │ └── Tests.xcconfig ├── RealmSwift │ ├── RealmSwift.xcconfig │ └── Tests.xcconfig ├── Release.xcconfig ├── Static.xcconfig ├── SwiftUISyncTestHost.xcconfig ├── SwiftUISyncTests.xcconfig ├── SwiftUITestHost.xcconfig ├── SwiftUITests.xcconfig ├── TestBase.xcconfig └── TestHost.xcconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Realm.podspec ├── Realm.xcodeproj ├── Realm.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── project.pbxproj └── xcshareddata │ ├── xcbaselines │ ├── 5D660FD71BE98C7C0021E04F.xcbaseline │ │ ├── 6890B8D9-CE81-403E-8EF6-B95A367D65B5.plist │ │ ├── B87A7896-8B70-4814-B20D-7CD723D62868.plist │ │ └── Info.plist │ └── E856D1DE195614A400FB2FCF.xcbaseline │ │ ├── 2EB6396F-9FD1-4243-AA83-2D9F9D4DD919.plist │ │ ├── 3AE81604-3FF9-49E2-A414-9B18BEEAE28F.plist │ │ ├── AAC6BA1A-785D-4850-B3EC-68BC9F1D3EEF.plist │ │ └── Info.plist │ └── xcschemes │ ├── CI.xcscheme │ ├── Download BaaS.xcscheme │ ├── Object Server Tests.xcscheme │ ├── Realm.xcscheme │ ├── RealmSwift.xcscheme │ ├── SwiftLint.xcscheme │ ├── SwiftUISyncTestHost.xcscheme │ ├── SwiftUISyncTests.xcscheme │ ├── SwiftUITestHost.xcscheme │ ├── SwiftUITests.xcscheme │ └── TestHost.xcscheme ├── Realm ├── NSError+RLMSync.h ├── NSError+RLMSync.m ├── ObjectServerTests │ ├── AsyncSyncTests.swift │ ├── ClientResetTests.swift │ ├── CombineSyncTests.swift │ ├── EventTests.swift │ ├── Object-Server-Tests-Bridging-Header.h │ ├── ObjectServerTests-Info.plist │ ├── RLMAsymmetricSyncServerTests.mm │ ├── RLMBSONTests.mm │ ├── RLMCollectionSyncTests.mm │ ├── RLMFlexibleSyncServerTests.mm │ ├── RLMMongoClientTests.mm │ ├── RLMObjectServerPartitionTests.mm │ ├── RLMObjectServerTests.mm │ ├── RLMServerTestObjects.h │ ├── RLMServerTestObjects.m │ ├── RLMSubscriptionTests.mm │ ├── RLMSyncTestCase.h │ ├── RLMSyncTestCase.mm │ ├── RLMUser+ObjectServerTests.h │ ├── RLMUser+ObjectServerTests.mm │ ├── RLMWatchTestUtility.h │ ├── RLMWatchTestUtility.m │ ├── RealmServer.swift │ ├── SwiftAsymmetricSyncServerTests.swift │ ├── SwiftCollectionSyncTests.swift │ ├── SwiftFlexibleSyncServerTests.swift │ ├── SwiftMongoClientTests.swift │ ├── SwiftObjectServerPartitionTests.swift │ ├── SwiftObjectServerTests.swift │ ├── SwiftServerObjects.swift │ ├── SwiftSyncTestCase.swift │ ├── SwiftUIServerTests.swift │ ├── TimeoutProxyServer.swift │ ├── WatchTestUtility.swift │ ├── certificates │ │ ├── ca-key.pem │ │ ├── ca.pem │ │ ├── localhost-cert-key.pem │ │ ├── localhost-cert.pem │ │ ├── localhost-other-cert.pem │ │ ├── localhost-other.cer │ │ ├── localhost.cer │ │ ├── not-localhost-cert.pem │ │ └── not-localhost.cer │ ├── config_overrides.json │ ├── include │ │ ├── RLMSyncTestCase.h │ │ └── RLMUser+ObjectServerTests.h │ └── setup_baas.rb ├── PrivacyInfo.xcprivacy ├── RLMAPIKeyAuth.h ├── RLMAPIKeyAuth.mm ├── RLMAccessor.h ├── RLMAccessor.hpp ├── RLMAccessor.mm ├── RLMAnalytics.hpp ├── RLMAnalytics.mm ├── RLMApp.h ├── RLMApp.mm ├── RLMApp_Private.h ├── RLMApp_Private.hpp ├── RLMArray.h ├── RLMArray.mm ├── RLMArray_Private.h ├── RLMArray_Private.hpp ├── RLMAsymmetricObject.h ├── RLMAsymmetricObject.mm ├── RLMAsyncTask.h ├── RLMAsyncTask.mm ├── RLMAsyncTask_Private.h ├── RLMBSON.h ├── RLMBSON.mm ├── RLMBSON_Private.hpp ├── RLMClassInfo.hpp ├── RLMClassInfo.mm ├── RLMCollection.h ├── RLMCollection.mm ├── RLMCollection_Private.h ├── RLMCollection_Private.hpp ├── RLMConstants.h ├── RLMConstants.m ├── RLMCredentials.h ├── RLMCredentials.mm ├── RLMCredentials_Private.hpp ├── RLMDecimal128.h ├── RLMDecimal128.mm ├── RLMDecimal128_Private.hpp ├── RLMDictionary.h ├── RLMDictionary.mm ├── RLMDictionary_Private.h ├── RLMDictionary_Private.hpp ├── RLMEmailPasswordAuth.h ├── RLMEmailPasswordAuth.mm ├── RLMEmbeddedObject.h ├── RLMEmbeddedObject.mm ├── RLMError.h ├── RLMError.mm ├── RLMError_Private.hpp ├── RLMEvent.h ├── RLMEvent.mm ├── RLMFindOneAndModifyOptions.h ├── RLMFindOneAndModifyOptions.mm ├── RLMFindOneAndModifyOptions_Private.hpp ├── RLMFindOptions.h ├── RLMFindOptions.mm ├── RLMFindOptions_Private.hpp ├── RLMGeospatial.h ├── RLMGeospatial.mm ├── RLMGeospatial_Private.hpp ├── RLMInitialSubscriptionsConfiguration.h ├── RLMInitialSubscriptionsConfiguration.m ├── RLMLogger.h ├── RLMLogger.mm ├── RLMLogger_Private.h ├── RLMManagedArray.mm ├── RLMManagedDictionary.mm ├── RLMManagedSet.mm ├── RLMMigration.h ├── RLMMigration.mm ├── RLMMigration_Private.h ├── RLMMongoClient.h ├── RLMMongoClient.mm ├── RLMMongoClient_Private.hpp ├── RLMMongoCollection.h ├── RLMMongoCollection.mm ├── RLMMongoCollection_Private.h ├── RLMMongoDatabase.h ├── RLMMongoDatabase_Private.hpp ├── RLMNetworkTransport.h ├── RLMNetworkTransport.mm ├── RLMNetworkTransport_Private.hpp ├── RLMObject.h ├── RLMObject.mm ├── RLMObjectBase.h ├── RLMObjectBase.mm ├── RLMObjectBase_Dynamic.h ├── RLMObjectBase_Private.h ├── RLMObjectId.h ├── RLMObjectId.mm ├── RLMObjectId_Private.hpp ├── RLMObjectSchema.h ├── RLMObjectSchema.mm ├── RLMObjectSchema_Private.h ├── RLMObjectSchema_Private.hpp ├── RLMObjectStore.h ├── RLMObjectStore.mm ├── RLMObject_Private.h ├── RLMObject_Private.hpp ├── RLMObservation.hpp ├── RLMObservation.mm ├── RLMPredicateUtil.hpp ├── RLMPredicateUtil.mm ├── RLMPrefix.h ├── RLMProperty.h ├── RLMProperty.mm ├── RLMProperty_Private.h ├── RLMProperty_Private.hpp ├── RLMProviderClient.h ├── RLMProviderClient.mm ├── RLMProviderClient_Private.hpp ├── RLMPushClient.h ├── RLMPushClient.mm ├── RLMPushClient_Private.hpp ├── RLMQueryUtil.hpp ├── RLMQueryUtil.mm ├── RLMRealm+Sync.h ├── RLMRealm+Sync.mm ├── RLMRealm.h ├── RLMRealm.mm ├── RLMRealmConfiguration.h ├── RLMRealmConfiguration.mm ├── RLMRealmConfiguration_Private.h ├── RLMRealmConfiguration_Private.hpp ├── RLMRealmUtil.hpp ├── RLMRealmUtil.mm ├── RLMRealm_Dynamic.h ├── RLMRealm_Private.h ├── RLMRealm_Private.hpp ├── RLMResults.h ├── RLMResults.mm ├── RLMResults_Private.h ├── RLMResults_Private.hpp ├── RLMScheduler.h ├── RLMScheduler.mm ├── RLMSchema.h ├── RLMSchema.mm ├── RLMSchema_Private.h ├── RLMSchema_Private.hpp ├── RLMSectionedResults.h ├── RLMSectionedResults.mm ├── RLMSectionedResults_Private.hpp ├── RLMSet.h ├── RLMSet.mm ├── RLMSet_Private.h ├── RLMSet_Private.hpp ├── RLMSwiftBridgingHeader.h ├── RLMSwiftCollectionBase.h ├── RLMSwiftCollectionBase.mm ├── RLMSwiftObject.h ├── RLMSwiftProperty.h ├── RLMSwiftSupport.h ├── RLMSwiftSupport.m ├── RLMSwiftValueStorage.h ├── RLMSwiftValueStorage.mm ├── RLMSyncConfiguration.h ├── RLMSyncConfiguration.mm ├── RLMSyncConfiguration_Private.h ├── RLMSyncConfiguration_Private.hpp ├── RLMSyncManager.h ├── RLMSyncManager.mm ├── RLMSyncManager_Private.hpp ├── RLMSyncSession.h ├── RLMSyncSession.mm ├── RLMSyncSession_Private.hpp ├── RLMSyncSubscription.h ├── RLMSyncSubscription.mm ├── RLMSyncSubscription_Private.h ├── RLMSyncSubscription_Private.hpp ├── RLMSyncUtil.mm ├── RLMSyncUtil_Private.hpp ├── RLMThreadSafeReference.h ├── RLMThreadSafeReference.mm ├── RLMThreadSafeReference_Private.hpp ├── RLMUUID.mm ├── RLMUUID_Private.hpp ├── RLMUpdateChecker.hpp ├── RLMUpdateChecker.mm ├── RLMUpdateResult.h ├── RLMUpdateResult.mm ├── RLMUpdateResult_Private.hpp ├── RLMUser.h ├── RLMUser.mm ├── RLMUserAPIKey.h ├── RLMUserAPIKey.mm ├── RLMUserAPIKey_Private.hpp ├── RLMUser_Private.h ├── RLMUser_Private.hpp ├── RLMUtil.hpp ├── RLMUtil.mm ├── RLMValue.h ├── RLMValue.mm ├── Realm-Info.plist ├── Realm.h ├── Realm.modulemap ├── Swift │ └── RLMSupport.swift ├── TestUtils │ ├── RLMChildProcessEnvironment.m │ ├── RLMMultiProcessTestCase.m │ ├── RLMTestCase.m │ ├── RLMTestObjects.m │ ├── RealmTestSupport.h │ ├── TestUtils.mm │ └── include │ │ ├── RLMAssertions.h │ │ ├── RLMChildProcessEnvironment.h │ │ ├── RLMMultiProcessTestCase.h │ │ ├── RLMTestCase.h │ │ ├── RLMTestObjects.h │ │ └── TestUtils.h └── Tests │ ├── ArrayPropertyTests.m │ ├── AsyncTests.mm │ ├── CompactionTests.m │ ├── Decimal128Tests.m │ ├── DictionaryPropertyTests.m │ ├── DynamicTests.m │ ├── EncryptionTests.mm │ ├── EnumeratorTests.m │ ├── InterprocessTests.m │ ├── KVOTests.mm │ ├── LinkTests.m │ ├── LinkingObjectsTests.mm │ ├── MigrationTests.mm │ ├── NotificationTests.m │ ├── ObjectCreationTests.mm │ ├── ObjectIdTests.m │ ├── ObjectInterfaceTests.m │ ├── ObjectSchemaTests.m │ ├── ObjectTests.m │ ├── PerformanceTests.m │ ├── PredicateUtilTests.mm │ ├── PrimitiveArrayPropertyTests.m │ ├── PrimitiveArrayPropertyTests.tpl.m │ ├── PrimitiveDictionaryPropertyTests.m │ ├── PrimitiveDictionaryPropertyTests.tpl.m │ ├── PrimitiveRLMValuePropertyTests.m │ ├── PrimitiveRLMValuePropertyTests.tpl.m │ ├── PrimitiveSetPropertyTests.m │ ├── PrimitiveSetPropertyTests.tpl.m │ ├── PropertyTests.m │ ├── QueryTests.m │ ├── RLMValueTests.m │ ├── RealmConfigurationTests.mm │ ├── RealmTests-Info.plist │ ├── RealmTests.mm │ ├── ResultsTests.m │ ├── SchemaTests.mm │ ├── SectionedResultsTests.m │ ├── SetPropertyTests.m │ ├── Swift │ ├── RLMSupport.swift │ ├── RLMTestCaseUtils.swift │ ├── RealmObjcSwiftTests-Info.plist │ ├── Swift-Tests-Bridging-Header.h │ ├── SwiftArrayPropertyTests.swift │ ├── SwiftArrayTests.swift │ ├── SwiftDynamicTests.swift │ ├── SwiftLinkTests.swift │ ├── SwiftObjectInterfaceTests.swift │ ├── SwiftPropertyTypeTest.swift │ ├── SwiftRLMDictionaryTests.swift │ ├── SwiftRealmTests.swift │ ├── SwiftSchemaTests.swift │ ├── SwiftSetPropertyTests.swift │ ├── SwiftSetTests.swift │ ├── SwiftTestObjects.swift │ └── SwiftUnicodeTests.swift │ ├── SwiftUISyncTestHost │ ├── ContentView.swift │ ├── Info.plist │ ├── SwiftUISyncTestHostApp.swift │ └── TestType.swift │ ├── SwiftUISyncTestHostUITests │ ├── Info.plist │ ├── SwiftUISyncTestHostUITests-Bridging-Header.h │ ├── SwiftUISyncTestHostUITests.entitlements │ └── SwiftUISyncTestHostUITests.swift │ ├── SwiftUITestHost │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Objects.swift │ └── SwiftUITestHostApp.swift │ ├── SwiftUITestHostUITests │ ├── Info.plist │ └── SwiftUITestHostUITests.swift │ ├── TestHost │ ├── Info.plist │ └── main.m │ ├── ThreadSafeReferenceTests.m │ ├── TransactionTests.m │ ├── UnicodeTests.m │ ├── UtilTests.mm │ ├── array_tests.py │ ├── dictionary_tests.py │ ├── file-format-version-10.realm │ ├── file-format-version-21.realm │ ├── fileformat-pre-null.realm │ ├── mixed_tests.py │ └── set_tests.py ├── RealmSwift.podspec ├── RealmSwift ├── Aliases.swift ├── AnyRealmValue.swift ├── App.swift ├── AsymmetricObject.swift ├── BSON.swift ├── Combine.swift ├── CustomPersistable.swift ├── Decimal128.swift ├── EmbeddedObject.swift ├── Error.swift ├── Events.swift ├── Geospatial.swift ├── Impl │ ├── BasicTypes.swift │ ├── CollectionAccess.swift │ ├── ComplexTypes.swift │ ├── KeyPathStrings.swift │ ├── ObjcBridgeable.swift │ ├── Persistable.swift │ ├── PropertyAccessors.swift │ ├── RealmCollectionImpl.swift │ └── SchemaDiscovery.swift ├── LinkingObjects.swift ├── List.swift ├── Map.swift ├── Migration.swift ├── MongoClient.swift ├── MutableSet.swift ├── Nonsync.swift ├── Object.swift ├── ObjectId.swift ├── ObjectSchema.swift ├── ObjectiveCSupport+AnyRealmValue.swift ├── ObjectiveCSupport+BSON.swift ├── ObjectiveCSupport+Sync.swift ├── ObjectiveCSupport.swift ├── Optional.swift ├── PersistedProperty.swift ├── PrivacyInfo.xcprivacy ├── Projection.swift ├── Property.swift ├── Query.swift ├── Realm.swift ├── RealmCollection.swift ├── RealmConfiguration.swift ├── RealmKeyedCollection.swift ├── RealmProperty.swift ├── RealmSwift-Info.plist ├── Results.swift ├── Schema.swift ├── SectionedResults.swift ├── SortDescriptor.swift ├── SwiftUI.swift ├── Sync.swift ├── SyncSubscription.swift ├── Tests │ ├── AnyRealmValueTests.swift │ ├── CodableTests.swift │ ├── CombineTests.swift │ ├── CompactionTests.swift │ ├── CustomColumnNameTests.swift │ ├── CustomObjectCreationTests.swift │ ├── CustomPersistableTestObjects.swift │ ├── Decimal128Tests.swift │ ├── GeospatialTests.swift │ ├── KVOTests.swift │ ├── KeyPathTests.swift │ ├── ListTests.swift │ ├── MapTests.swift │ ├── MigrationTests.swift │ ├── MixedCollectionTest.swift │ ├── ModernKVOTests.swift │ ├── ModernObjectAccessorTests.swift │ ├── ModernObjectCreationTests.swift │ ├── ModernObjectTests.swift │ ├── ModernTestObjects.swift │ ├── MutableSetTests.swift │ ├── ObjectAccessorTests.swift │ ├── ObjectCreationTests.swift │ ├── ObjectCustomPropertiesTests.swift │ ├── ObjectIdTests.swift │ ├── ObjectSchemaInitializationTests.swift │ ├── ObjectSchemaTests.swift │ ├── ObjectTests.swift │ ├── ObjectiveCSupportTests.swift │ ├── PerformanceTests.swift │ ├── PrimitiveListTests.swift │ ├── PrimitiveMapTests.swift │ ├── PrimitiveMutableSetTests.swift │ ├── ProjectedCollectTests.swift │ ├── ProjectionTests.swift │ ├── PropertyTests.swift │ ├── QueryTests.swift │ ├── QueryTests.swift.gyb │ ├── RealmCollectionTypeTests.swift │ ├── RealmConfigurationTests.swift │ ├── RealmPropertyTests.swift │ ├── RealmSwiftTests-BridgingHeader.h │ ├── RealmSwiftTests-Info.plist │ ├── RealmTests.swift │ ├── SchemaTests.swift │ ├── SectionedResultsTests.swift │ ├── SortDescriptorTests.swift │ ├── SwiftBSONTests.swift │ ├── SwiftLinkTests.swift │ ├── SwiftTestObjects.swift │ ├── SwiftUITests.swift │ ├── SwiftUnicodeTests.swift │ ├── TestCase.swift │ ├── TestUtils.swift │ ├── TestValueFactory.swift │ └── ThreadSafeReferenceTests.swift ├── ThreadSafeReference.swift └── Util.swift ├── SUPPORT.md ├── contrib ├── Development.md ├── ReleaseProcess.md ├── SignXCFramework.md └── UpgradingXcode.md ├── dependencies.list ├── docs ├── README.md └── custom_head.html ├── examples ├── README.md ├── installation │ ├── .gitignore │ ├── Carthage.xcodeproj │ │ └── project.pbxproj │ ├── CocoaPods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── App.xcscheme │ ├── CocoaPods.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Podfile │ ├── Source │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ObjCImport.m │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── SwiftExample.entitlements │ │ └── SwiftExampleApp.swift │ ├── Static │ │ ├── StaticExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StaticExample.xcscheme │ │ └── StaticExample │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ ├── SubRealm │ │ ├── SubRealm.podspec │ │ └── SubRealm.swift │ ├── SwiftPackageManager.notxcodeproj │ │ └── project.pbxproj │ ├── SwiftPackageManagerDynamic.notxcodeproj │ │ └── project.pbxproj │ ├── XCFramework.xcodeproj │ │ └── project.pbxproj │ └── build.rb ├── ios │ ├── objc │ │ ├── .gitignore │ │ ├── Backlink │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Backlink-Info.plist │ │ │ └── main.m │ │ ├── Common │ │ │ └── LaunchScreen.xib │ │ ├── Draw │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Draw-Info.plist │ │ │ ├── Draw.entitlements │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── RealmDraw-60@2x.png │ │ │ │ │ ├── RealmDraw-60@3x.png │ │ │ │ │ ├── RealmDraw-76.png │ │ │ │ │ ├── RealmDraw-76@2x.png │ │ │ │ │ └── RealmDraw-83.5@2x.png │ │ │ │ └── Pencils │ │ │ │ │ ├── Charcoal.imageset │ │ │ │ │ ├── Charcoal.png │ │ │ │ │ ├── Charcoal@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Dove.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Dove.png │ │ │ │ │ └── Dove@2x.png │ │ │ │ │ ├── Elephant.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Elephant.png │ │ │ │ │ └── Elephant@2x.png │ │ │ │ │ ├── Flamingo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Flamingo.png │ │ │ │ │ └── Flamingo@2x.png │ │ │ │ │ ├── GrapeJelly.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── GrapeJelly.png │ │ │ │ │ └── GrapeJelly@2x.png │ │ │ │ │ ├── Indigo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Indigo.png │ │ │ │ │ └── Indigo@2x.png │ │ │ │ │ ├── Melon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Melon.png │ │ │ │ │ └── Melon@2x.png │ │ │ │ │ ├── Mulberry.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Mulberry.png │ │ │ │ │ └── Mulberry@2x.png │ │ │ │ │ ├── Peach.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Peach.png │ │ │ │ │ └── Peach@2x.png │ │ │ │ │ ├── SexySalmon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── SexySalmon.png │ │ │ │ │ └── SexySalmon@2x.png │ │ │ │ │ └── Ultramarine.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Ultramarine.png │ │ │ │ │ └── Ultramarine@2x.png │ │ │ ├── Models │ │ │ │ ├── DrawPath.h │ │ │ │ ├── DrawPath.m │ │ │ │ ├── DrawPoint.h │ │ │ │ ├── DrawPoint.m │ │ │ │ ├── UIColor+Realm.h │ │ │ │ └── UIColor+Realm.m │ │ │ ├── Views │ │ │ │ ├── CanvasView.h │ │ │ │ ├── CanvasView.m │ │ │ │ ├── DrawView.h │ │ │ │ ├── DrawView.m │ │ │ │ ├── SwatchesView.h │ │ │ │ └── SwatchesView.m │ │ │ └── main.m │ │ ├── Encryption │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Encryption-Info.plist │ │ │ ├── LabelViewController.h │ │ │ ├── LabelViewController.m │ │ │ └── main.m │ │ ├── Extension │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Extension.entitlements │ │ │ ├── Info.plist │ │ │ ├── Tick.h │ │ │ ├── Tick.m │ │ │ └── main.m │ │ ├── GroupedTableView │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── TableViewController.h │ │ │ ├── TableViewController.m │ │ │ └── main.m │ │ ├── Migration │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Examples │ │ │ │ ├── Example_v0.h │ │ │ │ ├── Example_v1.h │ │ │ │ ├── Example_v2.h │ │ │ │ ├── Example_v3.h │ │ │ │ ├── Example_v4.h │ │ │ │ └── Example_v5.h │ │ │ ├── Migration-Info.plist │ │ │ ├── RealmTemplates │ │ │ │ ├── default-v0.realm │ │ │ │ ├── default-v1.realm │ │ │ │ ├── default-v2.realm │ │ │ │ ├── default-v3.realm │ │ │ │ ├── default-v4.realm │ │ │ │ └── default-v5.realm │ │ │ └── main.m │ │ ├── REST │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── REST-Info.plist │ │ │ ├── Venue.h │ │ │ ├── Venue.m │ │ │ └── main.m │ │ ├── RealmExamples.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Backlink.xcscheme │ │ │ │ ├── Draw.xcscheme │ │ │ │ ├── Encryption.xcscheme │ │ │ │ ├── Extension.xcscheme │ │ │ │ ├── GroupedTableView.xcscheme │ │ │ │ ├── Migration.xcscheme │ │ │ │ ├── RACTableView.xcscheme │ │ │ │ ├── REST.xcscheme │ │ │ │ ├── Simple.xcscheme │ │ │ │ ├── TableView.xcscheme │ │ │ │ └── TodayExtension.xcscheme │ │ ├── RealmExamples.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── RealmExamples.xcscmblueprint │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Simple │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Simple-Info.plist │ │ │ └── main.m │ │ ├── TableView │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── TableView-Info.plist │ │ │ ├── TableViewController.h │ │ │ ├── TableViewController.m │ │ │ └── main.m │ │ └── TodayExtension │ │ │ ├── Info.plist │ │ │ ├── MainInterface.storyboard │ │ │ ├── TodayExtension.entitlements │ │ │ ├── TodayViewController.h │ │ │ └── TodayViewController.m │ └── swift │ │ ├── .gitignore │ │ ├── AppClip │ │ ├── AppClip.entitlements │ │ ├── AppClipApp.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── appclip_ex.gif │ │ ├── AppClipParent │ │ ├── AppClipParent.entitlements │ │ ├── AppClipParentApp.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Constants.swift │ │ ├── ContentView.swift │ │ ├── DemoObject.swift │ │ ├── Info.plist │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── AppleAuthentication │ │ ├── AppDelegate.swift │ │ ├── AppleAuthentication.entitlements │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── README.md │ │ └── SceneDelegate.swift │ │ ├── AsyncOpenSwiftUI │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── AsyncOpenSwiftUI--iOS--Info.plist │ │ ├── AsyncOpenSwiftUI--macOS--Info.plist │ │ ├── AsyncOpenSwiftUIApp.swift │ │ └── ContentView.swift │ │ ├── Backlink │ │ ├── AppDelegate.swift │ │ └── Info.plist │ │ ├── Common │ │ └── LaunchScreen.xib │ │ ├── Encryption │ │ ├── AppDelegate.swift │ │ ├── Info.plist │ │ └── ViewController.swift │ │ ├── GettingStarted.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ │ ├── GroupedTableView │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── TableViewController.swift │ │ ├── ListSwiftUI │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── Views │ │ │ ├── App.swift │ │ │ └── ContentView.swift │ │ ├── Migration │ │ ├── AppDelegate.swift │ │ ├── Examples │ │ │ ├── Example_v0.swift │ │ │ ├── Example_v1.swift │ │ │ ├── Example_v2.swift │ │ │ ├── Example_v3.swift │ │ │ ├── Example_v4.swift │ │ │ └── Example_v5.swift │ │ ├── Info.plist │ │ ├── Migration.xcconfig │ │ ├── README.md │ │ └── RealmTemplates │ │ │ ├── default-v0.realm │ │ │ ├── default-v1.realm │ │ │ ├── default-v2.realm │ │ │ ├── default-v3.realm │ │ │ ├── default-v4.realm │ │ │ └── default-v5.realm │ │ ├── PlaygroundFrameworkWrapper │ │ ├── Info.plist │ │ └── PlaygroundFrameworkWrapper.swift │ │ ├── Projections │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── ProjectionsApp.swift │ │ ├── RealmExamples.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── AppClip.xcscheme │ │ │ ├── Backlink.xcscheme │ │ │ ├── Encryption.xcscheme │ │ │ ├── GroupedTableView.xcscheme │ │ │ ├── Migration.xcscheme │ │ │ ├── Simple.xcscheme │ │ │ └── TableView.xcscheme │ │ ├── RealmExamples.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── RealmExamples.xcscmblueprint │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Simple │ │ ├── AppDelegate.swift │ │ └── Info.plist │ │ └── TableView │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── TableViewController.swift ├── osx │ └── objc │ │ ├── JSONImport │ │ ├── Person.h │ │ ├── Person.m │ │ ├── main.m │ │ └── persons.json │ │ ├── RealmExamples.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── JSONImport.xcscheme │ │ └── RealmExamples.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── tvos │ ├── objc │ ├── DownloadCache │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ ├── App Icon - Large.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon - Small.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── RepositoriesViewController.h │ │ ├── RepositoriesViewController.m │ │ ├── Repository.h │ │ ├── Repository.m │ │ ├── RepositoryCell.h │ │ ├── RepositoryCell.m │ │ └── main.m │ ├── PreloadedData │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ ├── App Icon - Large.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon - Small.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Place.h │ │ ├── Place.m │ │ ├── PlacesViewController.h │ │ ├── PlacesViewController.m │ │ ├── Seed Data │ │ │ └── Places.realm │ │ └── main.m │ ├── RealmExamples.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── DownloadCache.xcscheme │ │ │ └── PreloadedData.xcscheme │ └── RealmExamples.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── swift │ ├── DownloadCache │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── RepositoriesViewController.swift │ ├── Repository.swift │ └── RepositoryCell.swift │ ├── PreloadedData │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── Place.swift │ ├── PlacesViewController.swift │ └── Seed Data │ │ └── Places.realm │ ├── RealmExamples.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── DownloadCache.xcscheme │ │ └── PreloadedData.xcscheme │ └── RealmExamples.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── RealmExamples.xcscmblueprint │ └── WorkspaceSettings.xcsettings ├── include ├── Realm │ ├── NSError+RLMSync.h │ ├── RLMAPIKeyAuth.h │ ├── RLMAccessor.h │ ├── RLMApp.h │ ├── RLMApp_Private.h │ ├── RLMArray.h │ ├── RLMArray_Private.h │ ├── RLMAsymmetricObject.h │ ├── RLMAsyncTask.h │ ├── RLMAsyncTask_Private.h │ ├── RLMBSON.h │ ├── RLMCollection.h │ ├── RLMCollection_Private.h │ ├── RLMConstants.h │ ├── RLMCredentials.h │ ├── RLMDecimal128.h │ ├── RLMDictionary.h │ ├── RLMDictionary_Private.h │ ├── RLMEmailPasswordAuth.h │ ├── RLMEmbeddedObject.h │ ├── RLMError.h │ ├── RLMEvent.h │ ├── RLMFindOneAndModifyOptions.h │ ├── RLMFindOptions.h │ ├── RLMGeospatial.h │ ├── RLMInitialSubscriptionsConfiguration.h │ ├── RLMLogger.h │ ├── RLMLogger_Private.h │ ├── RLMMigration.h │ ├── RLMMongoClient.h │ ├── RLMMongoCollection.h │ ├── RLMMongoCollection_Private.h │ ├── RLMMongoDatabase.h │ ├── RLMNetworkTransport.h │ ├── RLMObject.h │ ├── RLMObjectBase.h │ ├── RLMObjectBase_Dynamic.h │ ├── RLMObjectBase_Private.h │ ├── RLMObjectId.h │ ├── RLMObjectSchema.h │ ├── RLMObjectSchema_Private.h │ ├── RLMObjectStore.h │ ├── RLMObject_Private.h │ ├── RLMProperty.h │ ├── RLMProperty_Private.h │ ├── RLMProviderClient.h │ ├── RLMPushClient.h │ ├── RLMRealm+Sync.h │ ├── RLMRealm.h │ ├── RLMRealmConfiguration.h │ ├── RLMRealmConfiguration_Private.h │ ├── RLMRealm_Dynamic.h │ ├── RLMRealm_Private.h │ ├── RLMResults.h │ ├── RLMResults_Private.h │ ├── RLMScheduler.h │ ├── RLMSchema.h │ ├── RLMSchema_Private.h │ ├── RLMSectionedResults.h │ ├── RLMSet.h │ ├── RLMSet_Private.h │ ├── RLMSwiftCollectionBase.h │ ├── RLMSwiftObject.h │ ├── RLMSwiftProperty.h │ ├── RLMSwiftValueStorage.h │ ├── RLMSyncConfiguration.h │ ├── RLMSyncConfiguration_Private.h │ ├── RLMSyncManager.h │ ├── RLMSyncSession.h │ ├── RLMSyncSubscription.h │ ├── RLMSyncSubscription_Private.h │ ├── RLMThreadSafeReference.h │ ├── RLMUpdateResult.h │ ├── RLMUser.h │ ├── RLMUserAPIKey.h │ ├── RLMUser_Private.h │ ├── RLMValue.h │ └── Realm.h └── module.modulemap ├── logo.png ├── media ├── favicon.ico ├── logo-dark.svg └── logo.svg ├── plugin ├── README.md ├── RealmPlugin.xcodeproj │ └── project.pbxproj ├── RealmPlugin │ ├── RLMPRealmPlugin.h │ ├── RLMPRealmPlugin.m │ ├── RLMPSimulatorManager.h │ ├── RLMPSimulatorManager.m │ ├── RealmPlugin-Info.plist │ ├── RealmPlugin-Prefix.pch │ └── en.lproj │ │ └── InfoPlist.strings ├── Templates │ ├── file_templates │ │ └── Realm Model Object.xctemplate │ │ │ ├── Objective-C │ │ │ ├── ___FILEBASENAME___.h │ │ │ └── ___FILEBASENAME___.m │ │ │ ├── Swift │ │ │ └── ___FILEBASENAME___.swift │ │ │ ├── TemplateIcon.icns │ │ │ └── TemplateInfo.plist │ └── install_templates.sh └── rlm_lldb.py └── scripts ├── create-release-package.rb ├── download-core.sh ├── generate-rlmversion.sh ├── github_release.rb ├── package_examples.rb ├── pr-ci-matrix.rb ├── release-matrix.rb ├── setup-cocoapods.sh └── swift-version.sh /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- 1 | addAssignees: author 2 | addReviewers: false 3 | runOnDraft: true 4 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/Issue-Needs-Attention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/Issue-Needs-Attention.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/check-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/check-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/lock-threads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/lock-threads.yml -------------------------------------------------------------------------------- /.github/workflows/master-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/master-push.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.4 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Realm.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Carthage/Realm.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Configuration/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Base.xcconfig -------------------------------------------------------------------------------- /Configuration/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Debug.xcconfig -------------------------------------------------------------------------------- /Configuration/ObjectServerTests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/ObjectServerTests.xcconfig -------------------------------------------------------------------------------- /Configuration/Realm/PrivateSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Realm/PrivateSymbols.txt -------------------------------------------------------------------------------- /Configuration/Realm/Realm.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Realm/Realm.xcconfig -------------------------------------------------------------------------------- /Configuration/Realm/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Realm/Tests.xcconfig -------------------------------------------------------------------------------- /Configuration/RealmSwift/RealmSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/RealmSwift/RealmSwift.xcconfig -------------------------------------------------------------------------------- /Configuration/RealmSwift/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/RealmSwift/Tests.xcconfig -------------------------------------------------------------------------------- /Configuration/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Release.xcconfig -------------------------------------------------------------------------------- /Configuration/Static.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/Static.xcconfig -------------------------------------------------------------------------------- /Configuration/SwiftUISyncTestHost.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/SwiftUISyncTestHost.xcconfig -------------------------------------------------------------------------------- /Configuration/SwiftUISyncTests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/SwiftUISyncTests.xcconfig -------------------------------------------------------------------------------- /Configuration/SwiftUITestHost.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/SwiftUITestHost.xcconfig -------------------------------------------------------------------------------- /Configuration/SwiftUITests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/SwiftUITests.xcconfig -------------------------------------------------------------------------------- /Configuration/TestBase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/TestBase.xcconfig -------------------------------------------------------------------------------- /Configuration/TestHost.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Configuration/TestHost.xcconfig -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/README.md -------------------------------------------------------------------------------- /Realm.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.podspec -------------------------------------------------------------------------------- /Realm.xcodeproj/Realm.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/Realm.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Realm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/CI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/CI.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/Download BaaS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/Download BaaS.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/Object Server Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/Object Server Tests.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/Realm.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/Realm.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/RealmSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/RealmSwift.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/SwiftLint.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/SwiftLint.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/SwiftUISyncTestHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/SwiftUISyncTestHost.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/SwiftUISyncTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/SwiftUISyncTests.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/SwiftUITestHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/SwiftUITestHost.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/SwiftUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/SwiftUITests.xcscheme -------------------------------------------------------------------------------- /Realm.xcodeproj/xcshareddata/xcschemes/TestHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm.xcodeproj/xcshareddata/xcschemes/TestHost.xcscheme -------------------------------------------------------------------------------- /Realm/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/NSError+RLMSync.h -------------------------------------------------------------------------------- /Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Realm/ObjectServerTests/AsyncSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/AsyncSyncTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/ClientResetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/ClientResetTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/CombineSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/CombineSyncTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/EventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/EventTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/Object-Server-Tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/Object-Server-Tests-Bridging-Header.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/ObjectServerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/ObjectServerTests-Info.plist -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMAsymmetricSyncServerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMAsymmetricSyncServerTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMBSONTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMBSONTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMCollectionSyncTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMCollectionSyncTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMFlexibleSyncServerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMFlexibleSyncServerTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMMongoClientTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMMongoClientTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMObjectServerPartitionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMObjectServerPartitionTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMObjectServerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMObjectServerTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMServerTestObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMServerTestObjects.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMServerTestObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMServerTestObjects.m -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMSubscriptionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMSubscriptionTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMSyncTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMSyncTestCase.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMSyncTestCase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMSyncTestCase.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMUser+ObjectServerTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMUser+ObjectServerTests.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMUser+ObjectServerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMUser+ObjectServerTests.mm -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMWatchTestUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMWatchTestUtility.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RLMWatchTestUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RLMWatchTestUtility.m -------------------------------------------------------------------------------- /Realm/ObjectServerTests/RealmServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/RealmServer.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftAsymmetricSyncServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftAsymmetricSyncServerTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftCollectionSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftCollectionSyncTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftFlexibleSyncServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftFlexibleSyncServerTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftMongoClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftMongoClientTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftObjectServerPartitionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftObjectServerPartitionTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftObjectServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftObjectServerTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftServerObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftServerObjects.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftSyncTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftSyncTestCase.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/SwiftUIServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/SwiftUIServerTests.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/TimeoutProxyServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/TimeoutProxyServer.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/WatchTestUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/WatchTestUtility.swift -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/ca-key.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/ca.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/localhost-cert-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/localhost-cert-key.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/localhost-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/localhost-cert.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/localhost-other-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/localhost-other-cert.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/localhost-other.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/localhost-other.cer -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/localhost.cer -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/not-localhost-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/not-localhost-cert.pem -------------------------------------------------------------------------------- /Realm/ObjectServerTests/certificates/not-localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/certificates/not-localhost.cer -------------------------------------------------------------------------------- /Realm/ObjectServerTests/config_overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/config_overrides.json -------------------------------------------------------------------------------- /Realm/ObjectServerTests/include/RLMSyncTestCase.h: -------------------------------------------------------------------------------- 1 | ../RLMSyncTestCase.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/include/RLMUser+ObjectServerTests.h: -------------------------------------------------------------------------------- 1 | ../RLMUser+ObjectServerTests.h -------------------------------------------------------------------------------- /Realm/ObjectServerTests/setup_baas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/ObjectServerTests/setup_baas.rb -------------------------------------------------------------------------------- /Realm/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Realm/RLMAPIKeyAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAPIKeyAuth.h -------------------------------------------------------------------------------- /Realm/RLMAPIKeyAuth.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAPIKeyAuth.mm -------------------------------------------------------------------------------- /Realm/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAccessor.h -------------------------------------------------------------------------------- /Realm/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAccessor.hpp -------------------------------------------------------------------------------- /Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Realm/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Realm/RLMApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMApp.h -------------------------------------------------------------------------------- /Realm/RLMApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMApp.mm -------------------------------------------------------------------------------- /Realm/RLMApp_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMApp_Private.h -------------------------------------------------------------------------------- /Realm/RLMApp_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMApp_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMArray.h -------------------------------------------------------------------------------- /Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Realm/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMArray_Private.h -------------------------------------------------------------------------------- /Realm/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMAsymmetricObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAsymmetricObject.h -------------------------------------------------------------------------------- /Realm/RLMAsymmetricObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAsymmetricObject.mm -------------------------------------------------------------------------------- /Realm/RLMAsyncTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAsyncTask.h -------------------------------------------------------------------------------- /Realm/RLMAsyncTask.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAsyncTask.mm -------------------------------------------------------------------------------- /Realm/RLMAsyncTask_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMAsyncTask_Private.h -------------------------------------------------------------------------------- /Realm/RLMBSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMBSON.h -------------------------------------------------------------------------------- /Realm/RLMBSON.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMBSON.mm -------------------------------------------------------------------------------- /Realm/RLMBSON_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMBSON_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Realm/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCollection.h -------------------------------------------------------------------------------- /Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Realm/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCollection_Private.h -------------------------------------------------------------------------------- /Realm/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMConstants.h -------------------------------------------------------------------------------- /Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Realm/RLMCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCredentials.h -------------------------------------------------------------------------------- /Realm/RLMCredentials.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCredentials.mm -------------------------------------------------------------------------------- /Realm/RLMCredentials_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMCredentials_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMDecimal128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDecimal128.h -------------------------------------------------------------------------------- /Realm/RLMDecimal128.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDecimal128.mm -------------------------------------------------------------------------------- /Realm/RLMDecimal128_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDecimal128_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDictionary.h -------------------------------------------------------------------------------- /Realm/RLMDictionary.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDictionary.mm -------------------------------------------------------------------------------- /Realm/RLMDictionary_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDictionary_Private.h -------------------------------------------------------------------------------- /Realm/RLMDictionary_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMDictionary_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMEmailPasswordAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEmailPasswordAuth.h -------------------------------------------------------------------------------- /Realm/RLMEmailPasswordAuth.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEmailPasswordAuth.mm -------------------------------------------------------------------------------- /Realm/RLMEmbeddedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEmbeddedObject.h -------------------------------------------------------------------------------- /Realm/RLMEmbeddedObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEmbeddedObject.mm -------------------------------------------------------------------------------- /Realm/RLMError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMError.h -------------------------------------------------------------------------------- /Realm/RLMError.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMError.mm -------------------------------------------------------------------------------- /Realm/RLMError_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMError_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEvent.h -------------------------------------------------------------------------------- /Realm/RLMEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMEvent.mm -------------------------------------------------------------------------------- /Realm/RLMFindOneAndModifyOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOneAndModifyOptions.h -------------------------------------------------------------------------------- /Realm/RLMFindOneAndModifyOptions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOneAndModifyOptions.mm -------------------------------------------------------------------------------- /Realm/RLMFindOneAndModifyOptions_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOneAndModifyOptions_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMFindOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOptions.h -------------------------------------------------------------------------------- /Realm/RLMFindOptions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOptions.mm -------------------------------------------------------------------------------- /Realm/RLMFindOptions_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMFindOptions_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMGeospatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMGeospatial.h -------------------------------------------------------------------------------- /Realm/RLMGeospatial.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMGeospatial.mm -------------------------------------------------------------------------------- /Realm/RLMGeospatial_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMGeospatial_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMInitialSubscriptionsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMInitialSubscriptionsConfiguration.h -------------------------------------------------------------------------------- /Realm/RLMInitialSubscriptionsConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMInitialSubscriptionsConfiguration.m -------------------------------------------------------------------------------- /Realm/RLMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMLogger.h -------------------------------------------------------------------------------- /Realm/RLMLogger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMLogger.mm -------------------------------------------------------------------------------- /Realm/RLMLogger_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMLogger_Private.h -------------------------------------------------------------------------------- /Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Realm/RLMManagedDictionary.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMManagedDictionary.mm -------------------------------------------------------------------------------- /Realm/RLMManagedSet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMManagedSet.mm -------------------------------------------------------------------------------- /Realm/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMigration.h -------------------------------------------------------------------------------- /Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Realm/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMigration_Private.h -------------------------------------------------------------------------------- /Realm/RLMMongoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoClient.h -------------------------------------------------------------------------------- /Realm/RLMMongoClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoClient.mm -------------------------------------------------------------------------------- /Realm/RLMMongoClient_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoClient_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMMongoCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoCollection.h -------------------------------------------------------------------------------- /Realm/RLMMongoCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoCollection.mm -------------------------------------------------------------------------------- /Realm/RLMMongoCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoCollection_Private.h -------------------------------------------------------------------------------- /Realm/RLMMongoDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoDatabase.h -------------------------------------------------------------------------------- /Realm/RLMMongoDatabase_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMMongoDatabase_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMNetworkTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMNetworkTransport.h -------------------------------------------------------------------------------- /Realm/RLMNetworkTransport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMNetworkTransport.mm -------------------------------------------------------------------------------- /Realm/RLMNetworkTransport_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMNetworkTransport_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObject.h -------------------------------------------------------------------------------- /Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectBase.h -------------------------------------------------------------------------------- /Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Realm/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Realm/RLMObjectId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectId.h -------------------------------------------------------------------------------- /Realm/RLMObjectId.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectId.mm -------------------------------------------------------------------------------- /Realm/RLMObjectId_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectId_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectSchema.h -------------------------------------------------------------------------------- /Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Realm/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Realm/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectStore.h -------------------------------------------------------------------------------- /Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Realm/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObject_Private.h -------------------------------------------------------------------------------- /Realm/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObservation.hpp -------------------------------------------------------------------------------- /Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Realm/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Realm/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPrefix.h -------------------------------------------------------------------------------- /Realm/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProperty.h -------------------------------------------------------------------------------- /Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Realm/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProperty_Private.h -------------------------------------------------------------------------------- /Realm/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMProviderClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProviderClient.h -------------------------------------------------------------------------------- /Realm/RLMProviderClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProviderClient.mm -------------------------------------------------------------------------------- /Realm/RLMProviderClient_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMProviderClient_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMPushClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPushClient.h -------------------------------------------------------------------------------- /Realm/RLMPushClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPushClient.mm -------------------------------------------------------------------------------- /Realm/RLMPushClient_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMPushClient_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Realm/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Realm/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm.h -------------------------------------------------------------------------------- /Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Realm/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Realm/RLMRealmConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmConfiguration_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Realm/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm_Private.h -------------------------------------------------------------------------------- /Realm/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMResults.h -------------------------------------------------------------------------------- /Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Realm/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMResults_Private.h -------------------------------------------------------------------------------- /Realm/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMScheduler.h -------------------------------------------------------------------------------- /Realm/RLMScheduler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMScheduler.mm -------------------------------------------------------------------------------- /Realm/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSchema.h -------------------------------------------------------------------------------- /Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Realm/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSchema_Private.h -------------------------------------------------------------------------------- /Realm/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSectionedResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSectionedResults.h -------------------------------------------------------------------------------- /Realm/RLMSectionedResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSectionedResults.mm -------------------------------------------------------------------------------- /Realm/RLMSectionedResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSectionedResults_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSet.h -------------------------------------------------------------------------------- /Realm/RLMSet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSet.mm -------------------------------------------------------------------------------- /Realm/RLMSet_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSet_Private.h -------------------------------------------------------------------------------- /Realm/RLMSet_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSet_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Realm/RLMSwiftCollectionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftCollectionBase.h -------------------------------------------------------------------------------- /Realm/RLMSwiftCollectionBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftCollectionBase.mm -------------------------------------------------------------------------------- /Realm/RLMSwiftObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftObject.h -------------------------------------------------------------------------------- /Realm/RLMSwiftProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftProperty.h -------------------------------------------------------------------------------- /Realm/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Realm/RLMSwiftValueStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftValueStorage.h -------------------------------------------------------------------------------- /Realm/RLMSwiftValueStorage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSwiftValueStorage.mm -------------------------------------------------------------------------------- /Realm/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Realm/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Realm/RLMSyncConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncConfiguration_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncManager.h -------------------------------------------------------------------------------- /Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Realm/RLMSyncManager_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncManager_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSession.h -------------------------------------------------------------------------------- /Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Realm/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Realm/RLMSyncSubscription_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSubscription_Private.h -------------------------------------------------------------------------------- /Realm/RLMSyncSubscription_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncSubscription_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Realm/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Realm/RLMThreadSafeReference_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMThreadSafeReference_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMUUID.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUUID.mm -------------------------------------------------------------------------------- /Realm/RLMUUID_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUUID_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Realm/RLMUpdateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUpdateResult.h -------------------------------------------------------------------------------- /Realm/RLMUpdateResult.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUpdateResult.mm -------------------------------------------------------------------------------- /Realm/RLMUpdateResult_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUpdateResult_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUser.h -------------------------------------------------------------------------------- /Realm/RLMUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUser.mm -------------------------------------------------------------------------------- /Realm/RLMUserAPIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUserAPIKey.h -------------------------------------------------------------------------------- /Realm/RLMUserAPIKey.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUserAPIKey.mm -------------------------------------------------------------------------------- /Realm/RLMUserAPIKey_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUserAPIKey_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMUser_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUser_Private.h -------------------------------------------------------------------------------- /Realm/RLMUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUser_Private.hpp -------------------------------------------------------------------------------- /Realm/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUtil.hpp -------------------------------------------------------------------------------- /Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Realm/RLMValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMValue.h -------------------------------------------------------------------------------- /Realm/RLMValue.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/RLMValue.mm -------------------------------------------------------------------------------- /Realm/Realm-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Realm-Info.plist -------------------------------------------------------------------------------- /Realm/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Realm.h -------------------------------------------------------------------------------- /Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Realm/Swift/RLMSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Swift/RLMSupport.swift -------------------------------------------------------------------------------- /Realm/TestUtils/RLMChildProcessEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/RLMChildProcessEnvironment.m -------------------------------------------------------------------------------- /Realm/TestUtils/RLMMultiProcessTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/RLMMultiProcessTestCase.m -------------------------------------------------------------------------------- /Realm/TestUtils/RLMTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/RLMTestCase.m -------------------------------------------------------------------------------- /Realm/TestUtils/RLMTestObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/RLMTestObjects.m -------------------------------------------------------------------------------- /Realm/TestUtils/RealmTestSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/RealmTestSupport.h -------------------------------------------------------------------------------- /Realm/TestUtils/TestUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/TestUtils.mm -------------------------------------------------------------------------------- /Realm/TestUtils/include/RLMAssertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/RLMAssertions.h -------------------------------------------------------------------------------- /Realm/TestUtils/include/RLMChildProcessEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/RLMChildProcessEnvironment.h -------------------------------------------------------------------------------- /Realm/TestUtils/include/RLMMultiProcessTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/RLMMultiProcessTestCase.h -------------------------------------------------------------------------------- /Realm/TestUtils/include/RLMTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/RLMTestCase.h -------------------------------------------------------------------------------- /Realm/TestUtils/include/RLMTestObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/RLMTestObjects.h -------------------------------------------------------------------------------- /Realm/TestUtils/include/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/TestUtils/include/TestUtils.h -------------------------------------------------------------------------------- /Realm/Tests/ArrayPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ArrayPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/AsyncTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/AsyncTests.mm -------------------------------------------------------------------------------- /Realm/Tests/CompactionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/CompactionTests.m -------------------------------------------------------------------------------- /Realm/Tests/Decimal128Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Decimal128Tests.m -------------------------------------------------------------------------------- /Realm/Tests/DictionaryPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/DictionaryPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/DynamicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/DynamicTests.m -------------------------------------------------------------------------------- /Realm/Tests/EncryptionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/EncryptionTests.mm -------------------------------------------------------------------------------- /Realm/Tests/EnumeratorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/EnumeratorTests.m -------------------------------------------------------------------------------- /Realm/Tests/InterprocessTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/InterprocessTests.m -------------------------------------------------------------------------------- /Realm/Tests/KVOTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/KVOTests.mm -------------------------------------------------------------------------------- /Realm/Tests/LinkTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/LinkTests.m -------------------------------------------------------------------------------- /Realm/Tests/LinkingObjectsTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/LinkingObjectsTests.mm -------------------------------------------------------------------------------- /Realm/Tests/MigrationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/MigrationTests.mm -------------------------------------------------------------------------------- /Realm/Tests/NotificationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/NotificationTests.m -------------------------------------------------------------------------------- /Realm/Tests/ObjectCreationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ObjectCreationTests.mm -------------------------------------------------------------------------------- /Realm/Tests/ObjectIdTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ObjectIdTests.m -------------------------------------------------------------------------------- /Realm/Tests/ObjectInterfaceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ObjectInterfaceTests.m -------------------------------------------------------------------------------- /Realm/Tests/ObjectSchemaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ObjectSchemaTests.m -------------------------------------------------------------------------------- /Realm/Tests/ObjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ObjectTests.m -------------------------------------------------------------------------------- /Realm/Tests/PerformanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PerformanceTests.m -------------------------------------------------------------------------------- /Realm/Tests/PredicateUtilTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PredicateUtilTests.mm -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveArrayPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveArrayPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveArrayPropertyTests.tpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveArrayPropertyTests.tpl.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveDictionaryPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveDictionaryPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveDictionaryPropertyTests.tpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveDictionaryPropertyTests.tpl.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveRLMValuePropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveRLMValuePropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveRLMValuePropertyTests.tpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveRLMValuePropertyTests.tpl.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveSetPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveSetPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/PrimitiveSetPropertyTests.tpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PrimitiveSetPropertyTests.tpl.m -------------------------------------------------------------------------------- /Realm/Tests/PropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/PropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/QueryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/QueryTests.m -------------------------------------------------------------------------------- /Realm/Tests/RLMValueTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/RLMValueTests.m -------------------------------------------------------------------------------- /Realm/Tests/RealmConfigurationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/RealmConfigurationTests.mm -------------------------------------------------------------------------------- /Realm/Tests/RealmTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/RealmTests-Info.plist -------------------------------------------------------------------------------- /Realm/Tests/RealmTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/RealmTests.mm -------------------------------------------------------------------------------- /Realm/Tests/ResultsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ResultsTests.m -------------------------------------------------------------------------------- /Realm/Tests/SchemaTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SchemaTests.mm -------------------------------------------------------------------------------- /Realm/Tests/SectionedResultsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SectionedResultsTests.m -------------------------------------------------------------------------------- /Realm/Tests/SetPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SetPropertyTests.m -------------------------------------------------------------------------------- /Realm/Tests/Swift/RLMSupport.swift: -------------------------------------------------------------------------------- 1 | ../../Swift/RLMSupport.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/RLMTestCaseUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/RLMTestCaseUtils.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/RealmObjcSwiftTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/RealmObjcSwiftTests-Info.plist -------------------------------------------------------------------------------- /Realm/Tests/Swift/Swift-Tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/Swift-Tests-Bridging-Header.h -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftArrayPropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftArrayPropertyTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftArrayTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftDynamicTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftDynamicTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftLinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftLinkTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftObjectInterfaceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftObjectInterfaceTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftPropertyTypeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftPropertyTypeTest.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftRLMDictionaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftRLMDictionaryTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftRealmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftRealmTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftSchemaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftSchemaTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftSetPropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftSetPropertyTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftSetTests.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftTestObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftTestObjects.swift -------------------------------------------------------------------------------- /Realm/Tests/Swift/SwiftUnicodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/Swift/SwiftUnicodeTests.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHost/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHost/ContentView.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHost/Info.plist -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHost/SwiftUISyncTestHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHost/SwiftUISyncTestHostApp.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHost/TestType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHost/TestType.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHostUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHostUITests/Info.plist -------------------------------------------------------------------------------- /Realm/Tests/SwiftUISyncTestHostUITests/SwiftUISyncTestHostUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUISyncTestHostUITests/SwiftUISyncTestHostUITests.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHost/Info.plist -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHost/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHost/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHost/Objects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHost/Objects.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHost/SwiftUITestHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHost/SwiftUITestHostApp.swift -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHostUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHostUITests/Info.plist -------------------------------------------------------------------------------- /Realm/Tests/SwiftUITestHostUITests/SwiftUITestHostUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/SwiftUITestHostUITests/SwiftUITestHostUITests.swift -------------------------------------------------------------------------------- /Realm/Tests/TestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/TestHost/Info.plist -------------------------------------------------------------------------------- /Realm/Tests/TestHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/TestHost/main.m -------------------------------------------------------------------------------- /Realm/Tests/ThreadSafeReferenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/ThreadSafeReferenceTests.m -------------------------------------------------------------------------------- /Realm/Tests/TransactionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/TransactionTests.m -------------------------------------------------------------------------------- /Realm/Tests/UnicodeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/UnicodeTests.m -------------------------------------------------------------------------------- /Realm/Tests/UtilTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/UtilTests.mm -------------------------------------------------------------------------------- /Realm/Tests/array_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/array_tests.py -------------------------------------------------------------------------------- /Realm/Tests/dictionary_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/dictionary_tests.py -------------------------------------------------------------------------------- /Realm/Tests/file-format-version-10.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/file-format-version-10.realm -------------------------------------------------------------------------------- /Realm/Tests/file-format-version-21.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/file-format-version-21.realm -------------------------------------------------------------------------------- /Realm/Tests/fileformat-pre-null.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/fileformat-pre-null.realm -------------------------------------------------------------------------------- /Realm/Tests/mixed_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/mixed_tests.py -------------------------------------------------------------------------------- /Realm/Tests/set_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/Realm/Tests/set_tests.py -------------------------------------------------------------------------------- /RealmSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift.podspec -------------------------------------------------------------------------------- /RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /RealmSwift/AnyRealmValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/AnyRealmValue.swift -------------------------------------------------------------------------------- /RealmSwift/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/App.swift -------------------------------------------------------------------------------- /RealmSwift/AsymmetricObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/AsymmetricObject.swift -------------------------------------------------------------------------------- /RealmSwift/BSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/BSON.swift -------------------------------------------------------------------------------- /RealmSwift/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Combine.swift -------------------------------------------------------------------------------- /RealmSwift/CustomPersistable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/CustomPersistable.swift -------------------------------------------------------------------------------- /RealmSwift/Decimal128.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Decimal128.swift -------------------------------------------------------------------------------- /RealmSwift/EmbeddedObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/EmbeddedObject.swift -------------------------------------------------------------------------------- /RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Error.swift -------------------------------------------------------------------------------- /RealmSwift/Events.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Events.swift -------------------------------------------------------------------------------- /RealmSwift/Geospatial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Geospatial.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/BasicTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/BasicTypes.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/CollectionAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/CollectionAccess.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/ComplexTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/ComplexTypes.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/KeyPathStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/KeyPathStrings.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/ObjcBridgeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/ObjcBridgeable.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/Persistable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/Persistable.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/PropertyAccessors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/PropertyAccessors.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/RealmCollectionImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/RealmCollectionImpl.swift -------------------------------------------------------------------------------- /RealmSwift/Impl/SchemaDiscovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Impl/SchemaDiscovery.swift -------------------------------------------------------------------------------- /RealmSwift/LinkingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/LinkingObjects.swift -------------------------------------------------------------------------------- /RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/List.swift -------------------------------------------------------------------------------- /RealmSwift/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Map.swift -------------------------------------------------------------------------------- /RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /RealmSwift/MongoClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/MongoClient.swift -------------------------------------------------------------------------------- /RealmSwift/MutableSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/MutableSet.swift -------------------------------------------------------------------------------- /RealmSwift/Nonsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Nonsync.swift -------------------------------------------------------------------------------- /RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Object.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectId.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectiveCSupport+AnyRealmValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectiveCSupport+AnyRealmValue.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectiveCSupport+BSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectiveCSupport+BSON.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectiveCSupport+Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectiveCSupport+Sync.swift -------------------------------------------------------------------------------- /RealmSwift/ObjectiveCSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ObjectiveCSupport.swift -------------------------------------------------------------------------------- /RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /RealmSwift/PersistedProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/PersistedProperty.swift -------------------------------------------------------------------------------- /RealmSwift/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /RealmSwift/Projection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Projection.swift -------------------------------------------------------------------------------- /RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Property.swift -------------------------------------------------------------------------------- /RealmSwift/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Query.swift -------------------------------------------------------------------------------- /RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /RealmSwift/RealmCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/RealmCollection.swift -------------------------------------------------------------------------------- /RealmSwift/RealmConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/RealmConfiguration.swift -------------------------------------------------------------------------------- /RealmSwift/RealmKeyedCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/RealmKeyedCollection.swift -------------------------------------------------------------------------------- /RealmSwift/RealmProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/RealmProperty.swift -------------------------------------------------------------------------------- /RealmSwift/RealmSwift-Info.plist: -------------------------------------------------------------------------------- 1 | ../Realm/Realm-Info.plist -------------------------------------------------------------------------------- /RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Results.swift -------------------------------------------------------------------------------- /RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /RealmSwift/SectionedResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/SectionedResults.swift -------------------------------------------------------------------------------- /RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /RealmSwift/SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/SwiftUI.swift -------------------------------------------------------------------------------- /RealmSwift/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Sync.swift -------------------------------------------------------------------------------- /RealmSwift/SyncSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/SyncSubscription.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/AnyRealmValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/AnyRealmValueTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CodableTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CombineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CombineTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CompactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CompactionTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CustomColumnNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CustomColumnNameTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CustomObjectCreationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CustomObjectCreationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/CustomPersistableTestObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/CustomPersistableTestObjects.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/Decimal128Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/Decimal128Tests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/GeospatialTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/GeospatialTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/KVOTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/KVOTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/KeyPathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/KeyPathTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ListTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/MapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/MapTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/MigrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/MigrationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/MixedCollectionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/MixedCollectionTest.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ModernKVOTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ModernKVOTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ModernObjectAccessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ModernObjectAccessorTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ModernObjectCreationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ModernObjectCreationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ModernObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ModernObjectTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ModernTestObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ModernTestObjects.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/MutableSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/MutableSetTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectAccessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectAccessorTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectCreationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectCreationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectCustomPropertiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectCustomPropertiesTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectIdTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectIdTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectSchemaInitializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectSchemaInitializationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectSchemaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectSchemaTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ObjectiveCSupportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ObjectiveCSupportTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/PerformanceTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/PrimitiveListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/PrimitiveListTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/PrimitiveMapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/PrimitiveMapTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/PrimitiveMutableSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/PrimitiveMutableSetTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ProjectedCollectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ProjectedCollectTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ProjectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ProjectionTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/PropertyTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/QueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/QueryTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/QueryTests.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/QueryTests.swift.gyb -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmCollectionTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/RealmCollectionTypeTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/RealmConfigurationTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmPropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/RealmPropertyTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmSwiftTests-BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/RealmSwiftTests-BridgingHeader.h -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmSwiftTests-Info.plist: -------------------------------------------------------------------------------- 1 | ../../Realm/Tests/RealmTests-Info.plist -------------------------------------------------------------------------------- /RealmSwift/Tests/RealmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/RealmTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SchemaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SchemaTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SectionedResultsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SectionedResultsTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SortDescriptorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SortDescriptorTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SwiftBSONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SwiftBSONTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SwiftLinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SwiftLinkTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SwiftTestObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SwiftTestObjects.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SwiftUITests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/SwiftUnicodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/SwiftUnicodeTests.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/TestCase.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/TestUtils.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/TestValueFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/TestValueFactory.swift -------------------------------------------------------------------------------- /RealmSwift/Tests/ThreadSafeReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Tests/ThreadSafeReferenceTests.swift -------------------------------------------------------------------------------- /RealmSwift/ThreadSafeReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/ThreadSafeReference.swift -------------------------------------------------------------------------------- /RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/RealmSwift/Util.swift -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /contrib/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/contrib/Development.md -------------------------------------------------------------------------------- /contrib/ReleaseProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/contrib/ReleaseProcess.md -------------------------------------------------------------------------------- /contrib/SignXCFramework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/contrib/SignXCFramework.md -------------------------------------------------------------------------------- /contrib/UpgradingXcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/contrib/UpgradingXcode.md -------------------------------------------------------------------------------- /dependencies.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/dependencies.list -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/custom_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/docs/custom_head.html -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/installation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/.gitignore -------------------------------------------------------------------------------- /examples/installation/Carthage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Carthage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/installation/CocoaPods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/CocoaPods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/installation/CocoaPods.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/CocoaPods.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/installation/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Podfile -------------------------------------------------------------------------------- /examples/installation/Source/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Source/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/installation/Source/ObjCImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Source/ObjCImport.m -------------------------------------------------------------------------------- /examples/installation/Source/SwiftExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Source/SwiftExample.entitlements -------------------------------------------------------------------------------- /examples/installation/Source/SwiftExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Source/SwiftExampleApp.swift -------------------------------------------------------------------------------- /examples/installation/Static/StaticExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Static/StaticExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/installation/Static/StaticExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Static/StaticExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/installation/Static/StaticExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Static/StaticExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/installation/Static/StaticExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Static/StaticExample/Info.plist -------------------------------------------------------------------------------- /examples/installation/Static/StaticExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/Static/StaticExample/main.m -------------------------------------------------------------------------------- /examples/installation/SubRealm/SubRealm.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/SubRealm/SubRealm.podspec -------------------------------------------------------------------------------- /examples/installation/SubRealm/SubRealm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/SubRealm/SubRealm.swift -------------------------------------------------------------------------------- /examples/installation/SwiftPackageManager.notxcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/SwiftPackageManager.notxcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/installation/XCFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/XCFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/installation/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/installation/build.rb -------------------------------------------------------------------------------- /examples/ios/objc/.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | -------------------------------------------------------------------------------- /examples/ios/objc/Backlink/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Backlink/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Backlink/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Backlink/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Backlink/Backlink-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Backlink/Backlink-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Backlink/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Backlink/main.m -------------------------------------------------------------------------------- /examples/ios/objc/Common/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Common/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/ios/objc/Draw/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Draw-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Draw-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Draw.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Draw.entitlements -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/AppIcon.appiconset/RealmDraw-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/AppIcon.appiconset/RealmDraw-76.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Contents.json -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Contents.json -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Dove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Dove.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Dove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Dove.imageset/Dove@2x.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Indigo.imageset/Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Indigo.imageset/Indigo.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Melon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Melon.imageset/Contents.json -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Melon.imageset/Melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Melon.imageset/Melon.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Images.xcassets/Pencils/Peach.imageset/Peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Images.xcassets/Pencils/Peach.imageset/Peach.png -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/DrawPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/DrawPath.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/DrawPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/DrawPath.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/DrawPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/DrawPoint.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/DrawPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/DrawPoint.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/UIColor+Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/UIColor+Realm.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Models/UIColor+Realm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Models/UIColor+Realm.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/CanvasView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/CanvasView.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/CanvasView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/CanvasView.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/DrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/DrawView.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/DrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/DrawView.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/SwatchesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/SwatchesView.h -------------------------------------------------------------------------------- /examples/ios/objc/Draw/Views/SwatchesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/Views/SwatchesView.m -------------------------------------------------------------------------------- /examples/ios/objc/Draw/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Draw/main.m -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/Encryption-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/Encryption-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/LabelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/LabelViewController.h -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/LabelViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/LabelViewController.m -------------------------------------------------------------------------------- /examples/ios/objc/Encryption/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Encryption/main.m -------------------------------------------------------------------------------- /examples/ios/objc/Extension/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Extension/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Extension/Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/Extension.entitlements -------------------------------------------------------------------------------- /examples/ios/objc/Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Extension/Tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/Tick.h -------------------------------------------------------------------------------- /examples/ios/objc/Extension/Tick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/Tick.m -------------------------------------------------------------------------------- /examples/ios/objc/Extension/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Extension/main.m -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/TableViewController.h -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/TableViewController.m -------------------------------------------------------------------------------- /examples/ios/objc/GroupedTableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/GroupedTableView/main.m -------------------------------------------------------------------------------- /examples/ios/objc/Migration/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v0.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v1.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v2.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v3.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v4.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Examples/Example_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Examples/Example_v5.h -------------------------------------------------------------------------------- /examples/ios/objc/Migration/Migration-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/Migration-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v0.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v0.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v1.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v1.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v2.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v2.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v3.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v3.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v4.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v4.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/RealmTemplates/default-v5.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/RealmTemplates/default-v5.realm -------------------------------------------------------------------------------- /examples/ios/objc/Migration/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Migration/main.m -------------------------------------------------------------------------------- /examples/ios/objc/REST/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/REST/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/REST/REST-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/REST-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/REST/Venue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/Venue.h -------------------------------------------------------------------------------- /examples/ios/objc/REST/Venue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/Venue.m -------------------------------------------------------------------------------- /examples/ios/objc/REST/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/REST/main.m -------------------------------------------------------------------------------- /examples/ios/objc/RealmExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/RealmExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ios/objc/RealmExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/RealmExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/ios/objc/Simple/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Simple/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/Simple/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Simple/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/Simple/Simple-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Simple/Simple-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/Simple/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/Simple/main.m -------------------------------------------------------------------------------- /examples/ios/objc/TableView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/objc/TableView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/objc/TableView/TableView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/TableView-Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/TableView/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/TableViewController.h -------------------------------------------------------------------------------- /examples/ios/objc/TableView/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/TableViewController.m -------------------------------------------------------------------------------- /examples/ios/objc/TableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TableView/main.m -------------------------------------------------------------------------------- /examples/ios/objc/TodayExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TodayExtension/Info.plist -------------------------------------------------------------------------------- /examples/ios/objc/TodayExtension/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TodayExtension/MainInterface.storyboard -------------------------------------------------------------------------------- /examples/ios/objc/TodayExtension/TodayExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TodayExtension/TodayExtension.entitlements -------------------------------------------------------------------------------- /examples/ios/objc/TodayExtension/TodayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TodayExtension/TodayViewController.h -------------------------------------------------------------------------------- /examples/ios/objc/TodayExtension/TodayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/objc/TodayExtension/TodayViewController.m -------------------------------------------------------------------------------- /examples/ios/swift/.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | -------------------------------------------------------------------------------- /examples/ios/swift/AppClip/AppClip.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClip/AppClip.entitlements -------------------------------------------------------------------------------- /examples/ios/swift/AppClip/AppClipApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClip/AppClipApp.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppClip/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClip/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/AppClip/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClip/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/AppClip/appclip_ex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClip/appclip_ex.gif -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/AppClipParent.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/AppClipParent.entitlements -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/AppClipParentApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/AppClipParentApp.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/Constants.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/ContentView.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/DemoObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/DemoObject.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppClipParent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppClipParent/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/AppleAuthentication.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/AppleAuthentication.entitlements -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/ContentView.swift -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/README.md -------------------------------------------------------------------------------- /examples/ios/swift/AppleAuthentication/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AppleAuthentication/SceneDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/AsyncOpenSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AsyncOpenSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUI--iOS--Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUI--iOS--Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUI--macOS--Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUI--macOS--Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AsyncOpenSwiftUI/AsyncOpenSwiftUIApp.swift -------------------------------------------------------------------------------- /examples/ios/swift/AsyncOpenSwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/AsyncOpenSwiftUI/ContentView.swift -------------------------------------------------------------------------------- /examples/ios/swift/Backlink/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Backlink/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/Backlink/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Backlink/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/Common/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Common/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/ios/swift/Encryption/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Encryption/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/Encryption/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Encryption/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/Encryption/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Encryption/ViewController.swift -------------------------------------------------------------------------------- /examples/ios/swift/GettingStarted.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/GettingStarted.playground/Contents.swift -------------------------------------------------------------------------------- /examples/ios/swift/GettingStarted.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/GettingStarted.playground/contents.xcplayground -------------------------------------------------------------------------------- /examples/ios/swift/GroupedTableView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/GroupedTableView/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/GroupedTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/GroupedTableView/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/GroupedTableView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/GroupedTableView/TableViewController.swift -------------------------------------------------------------------------------- /examples/ios/swift/ListSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/ListSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/ListSwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/ListSwiftUI/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/ListSwiftUI/Views/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/ListSwiftUI/Views/App.swift -------------------------------------------------------------------------------- /examples/ios/swift/ListSwiftUI/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/ListSwiftUI/Views/ContentView.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v0.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v1.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v2.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v3.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v4.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Examples/Example_v5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Examples/Example_v5.swift -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/Migration/Migration.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/Migration.xcconfig -------------------------------------------------------------------------------- /examples/ios/swift/Migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/README.md -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v0.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v0.realm -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v1.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v1.realm -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v2.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v2.realm -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v3.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v3.realm -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v4.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v4.realm -------------------------------------------------------------------------------- /examples/ios/swift/Migration/RealmTemplates/default-v5.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Migration/RealmTemplates/default-v5.realm -------------------------------------------------------------------------------- /examples/ios/swift/PlaygroundFrameworkWrapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/PlaygroundFrameworkWrapper/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/Projections/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Projections/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/swift/Projections/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Projections/ContentView.swift -------------------------------------------------------------------------------- /examples/ios/swift/Projections/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Projections/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/Projections/ProjectionsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Projections/ProjectionsApp.swift -------------------------------------------------------------------------------- /examples/ios/swift/RealmExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/RealmExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ios/swift/RealmExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/RealmExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/ios/swift/Simple/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Simple/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/Simple/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/Simple/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/TableView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/TableView/AppDelegate.swift -------------------------------------------------------------------------------- /examples/ios/swift/TableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/TableView/Info.plist -------------------------------------------------------------------------------- /examples/ios/swift/TableView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/ios/swift/TableView/TableViewController.swift -------------------------------------------------------------------------------- /examples/osx/objc/JSONImport/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/JSONImport/Person.h -------------------------------------------------------------------------------- /examples/osx/objc/JSONImport/Person.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/JSONImport/Person.m -------------------------------------------------------------------------------- /examples/osx/objc/JSONImport/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/JSONImport/main.m -------------------------------------------------------------------------------- /examples/osx/objc/JSONImport/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/JSONImport/persons.json -------------------------------------------------------------------------------- /examples/osx/objc/RealmExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/RealmExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/osx/objc/RealmExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/osx/objc/RealmExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/AppDelegate.h -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/AppDelegate.m -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/Info.plist -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/RepositoriesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/RepositoriesViewController.h -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/RepositoriesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/RepositoriesViewController.m -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/Repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/Repository.h -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/Repository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/Repository.m -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/RepositoryCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/RepositoryCell.h -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/RepositoryCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/RepositoryCell.m -------------------------------------------------------------------------------- /examples/tvos/objc/DownloadCache/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/DownloadCache/main.m -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/AppDelegate.h -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/AppDelegate.m -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Info.plist -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Place.h -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Place.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Place.m -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/PlacesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/PlacesViewController.h -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/PlacesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/PlacesViewController.m -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/Seed Data/Places.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/Seed Data/Places.realm -------------------------------------------------------------------------------- /examples/tvos/objc/PreloadedData/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/PreloadedData/main.m -------------------------------------------------------------------------------- /examples/tvos/objc/RealmExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/RealmExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/tvos/objc/RealmExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/objc/RealmExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/AppDelegate.swift -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/Info.plist -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/RepositoriesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/RepositoriesViewController.swift -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/Repository.swift -------------------------------------------------------------------------------- /examples/tvos/swift/DownloadCache/RepositoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/DownloadCache/RepositoryCell.swift -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/AppDelegate.swift -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/Info.plist -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/Place.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/Place.swift -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/PlacesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/PlacesViewController.swift -------------------------------------------------------------------------------- /examples/tvos/swift/PreloadedData/Seed Data/Places.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/PreloadedData/Seed Data/Places.realm -------------------------------------------------------------------------------- /examples/tvos/swift/RealmExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/RealmExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/tvos/swift/RealmExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/examples/tvos/swift/RealmExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /include/Realm/NSError+RLMSync.h: -------------------------------------------------------------------------------- 1 | ../../Realm/NSError+RLMSync.h -------------------------------------------------------------------------------- /include/Realm/RLMAPIKeyAuth.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMAPIKeyAuth.h -------------------------------------------------------------------------------- /include/Realm/RLMAccessor.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMAccessor.h -------------------------------------------------------------------------------- /include/Realm/RLMApp.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMApp.h -------------------------------------------------------------------------------- /include/Realm/RLMApp_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMApp_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMArray.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMArray.h -------------------------------------------------------------------------------- /include/Realm/RLMArray_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMArray_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMAsymmetricObject.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMAsymmetricObject.h -------------------------------------------------------------------------------- /include/Realm/RLMAsyncTask.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMAsyncTask.h -------------------------------------------------------------------------------- /include/Realm/RLMAsyncTask_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMAsyncTask_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMBSON.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMBSON.h -------------------------------------------------------------------------------- /include/Realm/RLMCollection.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMCollection.h -------------------------------------------------------------------------------- /include/Realm/RLMCollection_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMCollection_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMConstants.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMConstants.h -------------------------------------------------------------------------------- /include/Realm/RLMCredentials.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMCredentials.h -------------------------------------------------------------------------------- /include/Realm/RLMDecimal128.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMDecimal128.h -------------------------------------------------------------------------------- /include/Realm/RLMDictionary.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMDictionary.h -------------------------------------------------------------------------------- /include/Realm/RLMDictionary_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMDictionary_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMEmailPasswordAuth.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMEmailPasswordAuth.h -------------------------------------------------------------------------------- /include/Realm/RLMEmbeddedObject.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMEmbeddedObject.h -------------------------------------------------------------------------------- /include/Realm/RLMError.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMError.h -------------------------------------------------------------------------------- /include/Realm/RLMEvent.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMEvent.h -------------------------------------------------------------------------------- /include/Realm/RLMFindOneAndModifyOptions.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMFindOneAndModifyOptions.h -------------------------------------------------------------------------------- /include/Realm/RLMFindOptions.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMFindOptions.h -------------------------------------------------------------------------------- /include/Realm/RLMGeospatial.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMGeospatial.h -------------------------------------------------------------------------------- /include/Realm/RLMInitialSubscriptionsConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMInitialSubscriptionsConfiguration.h -------------------------------------------------------------------------------- /include/Realm/RLMLogger.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMLogger.h -------------------------------------------------------------------------------- /include/Realm/RLMLogger_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMLogger_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMMigration.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMMigration.h -------------------------------------------------------------------------------- /include/Realm/RLMMongoClient.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMMongoClient.h -------------------------------------------------------------------------------- /include/Realm/RLMMongoCollection.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMMongoCollection.h -------------------------------------------------------------------------------- /include/Realm/RLMMongoCollection_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMMongoCollection_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMMongoDatabase.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMMongoDatabase.h -------------------------------------------------------------------------------- /include/Realm/RLMNetworkTransport.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMNetworkTransport.h -------------------------------------------------------------------------------- /include/Realm/RLMObject.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObject.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectBase.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectId.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectId.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectSchema.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMObjectStore.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObjectStore.h -------------------------------------------------------------------------------- /include/Realm/RLMObject_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMObject_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMProperty.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMProperty.h -------------------------------------------------------------------------------- /include/Realm/RLMProperty_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMProperty_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMProviderClient.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMProviderClient.h -------------------------------------------------------------------------------- /include/Realm/RLMPushClient.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMPushClient.h -------------------------------------------------------------------------------- /include/Realm/RLMRealm+Sync.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealm+Sync.h -------------------------------------------------------------------------------- /include/Realm/RLMRealm.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealm.h -------------------------------------------------------------------------------- /include/Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /include/Realm/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /include/Realm/RLMRealm_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMRealm_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMResults.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMResults.h -------------------------------------------------------------------------------- /include/Realm/RLMResults_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMResults_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMScheduler.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMScheduler.h -------------------------------------------------------------------------------- /include/Realm/RLMSchema.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSchema.h -------------------------------------------------------------------------------- /include/Realm/RLMSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSchema_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMSectionedResults.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSectionedResults.h -------------------------------------------------------------------------------- /include/Realm/RLMSet.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSet.h -------------------------------------------------------------------------------- /include/Realm/RLMSet_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSet_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMSwiftCollectionBase.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSwiftCollectionBase.h -------------------------------------------------------------------------------- /include/Realm/RLMSwiftObject.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSwiftObject.h -------------------------------------------------------------------------------- /include/Realm/RLMSwiftProperty.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSwiftProperty.h -------------------------------------------------------------------------------- /include/Realm/RLMSwiftValueStorage.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSwiftValueStorage.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncManager.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncManager.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncSession.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncSession.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncSubscription.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncSubscription.h -------------------------------------------------------------------------------- /include/Realm/RLMSyncSubscription_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMSyncSubscription_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /include/Realm/RLMUpdateResult.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMUpdateResult.h -------------------------------------------------------------------------------- /include/Realm/RLMUser.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMUser.h -------------------------------------------------------------------------------- /include/Realm/RLMUserAPIKey.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMUserAPIKey.h -------------------------------------------------------------------------------- /include/Realm/RLMUser_Private.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMUser_Private.h -------------------------------------------------------------------------------- /include/Realm/RLMValue.h: -------------------------------------------------------------------------------- 1 | ../../Realm/RLMValue.h -------------------------------------------------------------------------------- /include/Realm/Realm.h: -------------------------------------------------------------------------------- 1 | ../../Realm/Realm.h -------------------------------------------------------------------------------- /include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/include/module.modulemap -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/logo.png -------------------------------------------------------------------------------- /media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/media/favicon.ico -------------------------------------------------------------------------------- /media/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/media/logo-dark.svg -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/media/logo.svg -------------------------------------------------------------------------------- /plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/README.md -------------------------------------------------------------------------------- /plugin/RealmPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /plugin/RealmPlugin/RLMPRealmPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RLMPRealmPlugin.h -------------------------------------------------------------------------------- /plugin/RealmPlugin/RLMPRealmPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RLMPRealmPlugin.m -------------------------------------------------------------------------------- /plugin/RealmPlugin/RLMPSimulatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RLMPSimulatorManager.h -------------------------------------------------------------------------------- /plugin/RealmPlugin/RLMPSimulatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RLMPSimulatorManager.m -------------------------------------------------------------------------------- /plugin/RealmPlugin/RealmPlugin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RealmPlugin-Info.plist -------------------------------------------------------------------------------- /plugin/RealmPlugin/RealmPlugin-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/RealmPlugin/RealmPlugin-Prefix.pch -------------------------------------------------------------------------------- /plugin/RealmPlugin/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /plugin/Templates/install_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/Templates/install_templates.sh -------------------------------------------------------------------------------- /plugin/rlm_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/plugin/rlm_lldb.py -------------------------------------------------------------------------------- /scripts/create-release-package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/create-release-package.rb -------------------------------------------------------------------------------- /scripts/download-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/download-core.sh -------------------------------------------------------------------------------- /scripts/generate-rlmversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/generate-rlmversion.sh -------------------------------------------------------------------------------- /scripts/github_release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/github_release.rb -------------------------------------------------------------------------------- /scripts/package_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/package_examples.rb -------------------------------------------------------------------------------- /scripts/pr-ci-matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/pr-ci-matrix.rb -------------------------------------------------------------------------------- /scripts/release-matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/release-matrix.rb -------------------------------------------------------------------------------- /scripts/setup-cocoapods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/setup-cocoapods.sh -------------------------------------------------------------------------------- /scripts/swift-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-swift/HEAD/scripts/swift-version.sh --------------------------------------------------------------------------------