├── .DS_Store ├── .gitignore ├── .travis.yml ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Crust │ ├── Crust │ │ ├── Mapper │ │ │ ├── CRMapper.swift │ │ │ ├── MappingOperator.swift │ │ │ └── MappingProtocols.swift │ │ └── Utilities │ │ │ └── AnyAdaptor.swift │ ├── LICENSE │ └── README.md ├── Headers │ └── Private │ │ └── Realm │ │ └── Realm │ │ ├── RLMAccessor.h │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMCollection.h │ │ ├── RLMConstants.h │ │ ├── RLMDefines.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ └── Realm.h ├── JSONValueRX │ ├── JSONValue │ │ ├── Info.plist │ │ ├── JSON.swift │ │ ├── JSONable.swift │ │ └── Utilities.swift │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── Realm │ ├── LICENSE │ ├── README.md │ ├── Realm │ │ ├── ObjectStore │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── cached_realm.cpp │ │ │ │ │ └── external_commit_helper.cpp │ │ │ │ ├── async_query.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ └── transact_log_handler.cpp │ │ │ ├── index_set.cpp │ │ │ ├── object_schema.cpp │ │ │ ├── object_store.cpp │ │ │ ├── results.cpp │ │ │ ├── schema.cpp │ │ │ └── shared_realm.cpp │ │ ├── RLMAccessor.mm │ │ ├── RLMAnalytics.mm │ │ ├── RLMArray.mm │ │ ├── RLMArrayLinkView.mm │ │ ├── RLMConstants.m │ │ ├── RLMListBase.mm │ │ ├── RLMMigration.mm │ │ ├── RLMObject.mm │ │ ├── RLMObjectBase.mm │ │ ├── RLMObjectSchema.mm │ │ ├── RLMObjectStore.mm │ │ ├── RLMObservation.mm │ │ ├── RLMOptionalBase.mm │ │ ├── RLMPredicateUtil.mm │ │ ├── RLMProperty.mm │ │ ├── RLMQueryUtil.mm │ │ ├── RLMRealm.mm │ │ ├── RLMRealmConfiguration.mm │ │ ├── RLMRealmUtil.mm │ │ ├── RLMResults.mm │ │ ├── RLMSchema.mm │ │ ├── RLMSwiftSupport.m │ │ ├── RLMUpdateChecker.mm │ │ ├── RLMUtil.mm │ │ └── module.modulemap │ ├── build.sh │ ├── core │ │ └── librealm-ios.a │ └── include │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray_Private.hpp │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm │ │ ├── RLMAccessor.h │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMCollection.h │ │ ├── RLMConstants.h │ │ ├── RLMDefines.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ └── Realm.h │ │ ├── binding_context.hpp │ │ ├── core │ │ ├── realm.hpp │ │ └── realm │ │ │ ├── alloc.hpp │ │ │ ├── alloc_slab.hpp │ │ │ ├── array.hpp │ │ │ ├── array_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_long.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bptree.hpp │ │ │ ├── column.hpp │ │ │ ├── column_backlink.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_link.hpp │ │ │ ├── column_linkbase.hpp │ │ │ ├── column_linklist.hpp │ │ │ ├── column_mixed.hpp │ │ │ ├── column_mixed_tpl.hpp │ │ │ ├── column_string.hpp │ │ │ ├── column_string_enum.hpp │ │ │ ├── column_table.hpp │ │ │ ├── column_tpl.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── commit_log.hpp │ │ │ ├── data_type.hpp │ │ │ ├── datetime.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_fwd.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── group.hpp │ │ │ ├── group_shared.hpp │ │ │ ├── group_writer.hpp │ │ │ ├── handover_defs.hpp │ │ │ ├── history.hpp │ │ │ ├── impl │ │ │ ├── array_writer.hpp │ │ │ ├── destroy_guard.hpp │ │ │ ├── input_stream.hpp │ │ │ ├── output_stream.hpp │ │ │ ├── sequential_getter.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── importer.hpp │ │ │ ├── index_string.hpp │ │ │ ├── lang_bind_helper.hpp │ │ │ ├── link_view.hpp │ │ │ ├── link_view_fwd.hpp │ │ │ ├── mixed.hpp │ │ │ ├── owned_data.hpp │ │ │ ├── query.hpp │ │ │ ├── query_conditions.hpp │ │ │ ├── query_engine.hpp │ │ │ ├── query_expression.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── row.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── table.hpp │ │ │ ├── table_accessors.hpp │ │ │ ├── table_basic.hpp │ │ │ ├── table_basic_fwd.hpp │ │ │ ├── table_macros.hpp │ │ │ ├── table_ref.hpp │ │ │ ├── table_view.hpp │ │ │ ├── table_view_basic.hpp │ │ │ ├── unicode.hpp │ │ │ ├── util │ │ │ ├── assert.hpp │ │ │ ├── basic_system_errors.hpp │ │ │ ├── bind_ptr.hpp │ │ │ ├── buffer.hpp │ │ │ ├── config.h │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── event_loop.hpp │ │ │ ├── features.h │ │ │ ├── file.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── inspect.hpp │ │ │ ├── logger.hpp │ │ │ ├── memory_stream.hpp │ │ │ ├── meta.hpp │ │ │ ├── misc_errors.hpp │ │ │ ├── miscellaneous.hpp │ │ │ ├── network.hpp │ │ │ ├── optional.hpp │ │ │ ├── platform_specific_condvar.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── safe_int_ops.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── terminate.hpp │ │ │ ├── thread.hpp │ │ │ ├── to_string.hpp │ │ │ ├── tuple.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── uri.hpp │ │ │ └── utf8.hpp │ │ │ ├── utilities.hpp │ │ │ ├── version.hpp │ │ │ └── views.hpp │ │ ├── impl │ │ ├── apple │ │ │ ├── cached_realm.hpp │ │ │ └── external_commit_helper.hpp │ │ ├── async_query.hpp │ │ ├── cached_realm.hpp │ │ ├── cached_realm_base.hpp │ │ ├── external_commit_helper.hpp │ │ ├── realm_coordinator.hpp │ │ └── transact_log_handler.hpp │ │ ├── index_set.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ └── shared_realm.hpp ├── RealmSwift │ ├── LICENSE │ ├── README.md │ ├── RealmSwift │ │ ├── Aliases.swift │ │ ├── Error.swift │ │ ├── List.swift │ │ ├── Migration.swift │ │ ├── Object.swift │ │ ├── ObjectSchema.swift │ │ ├── Optional.swift │ │ ├── Property.swift │ │ ├── Realm.swift │ │ ├── RealmCollectionType.swift │ │ ├── RealmConfiguration.swift │ │ ├── Results.swift │ │ ├── Schema.swift │ │ ├── SortDescriptor.swift │ │ ├── SwiftVersion.swift │ │ └── Util.swift │ └── build.sh └── Target Support Files │ ├── Crust │ ├── Crust-dummy.m │ ├── Crust-prefix.pch │ ├── Crust-umbrella.h │ ├── Crust.modulemap │ ├── Crust.xcconfig │ └── Info.plist │ ├── JSONValueRX │ ├── Info.plist │ ├── JSONValueRX-dummy.m │ ├── JSONValueRX-prefix.pch │ ├── JSONValueRX-umbrella.h │ ├── JSONValueRX.modulemap │ └── JSONValueRX.xcconfig │ ├── Pods-RealmCrust │ ├── Info.plist │ ├── Pods-RealmCrust-acknowledgements.markdown │ ├── Pods-RealmCrust-acknowledgements.plist │ ├── Pods-RealmCrust-dummy.m │ ├── Pods-RealmCrust-frameworks.sh │ ├── Pods-RealmCrust-resources.sh │ ├── Pods-RealmCrust-umbrella.h │ ├── Pods-RealmCrust.debug.xcconfig │ ├── Pods-RealmCrust.modulemap │ └── Pods-RealmCrust.release.xcconfig │ ├── Pods-RealmCrustTests │ ├── Info.plist │ ├── Pods-RealmCrustTests-acknowledgements.markdown │ ├── Pods-RealmCrustTests-acknowledgements.plist │ ├── Pods-RealmCrustTests-dummy.m │ ├── Pods-RealmCrustTests-frameworks.sh │ ├── Pods-RealmCrustTests-resources.sh │ ├── Pods-RealmCrustTests-umbrella.h │ ├── Pods-RealmCrustTests.debug.xcconfig │ ├── Pods-RealmCrustTests.modulemap │ └── Pods-RealmCrustTests.release.xcconfig │ ├── Realm │ ├── Info.plist │ ├── Realm-dummy.m │ ├── Realm-prefix.pch │ ├── Realm.modulemap │ └── Realm.xcconfig │ └── RealmSwift │ ├── Info.plist │ ├── RealmSwift-dummy.m │ ├── RealmSwift-prefix.pch │ ├── RealmSwift-umbrella.h │ ├── RealmSwift.modulemap │ └── RealmSwift.xcconfig ├── README.md ├── RealmCrust.podspec ├── RealmCrust.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── RealmCrust.xcscheme ├── RealmCrust.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── WorkspaceSettings.xcsettings ├── RealmCrust ├── .DS_Store ├── Info.plist ├── RealmCrust.h └── RealmMappings.swift └── RealmCrustTests ├── Company.swift ├── CompanyMappingTests.swift ├── CompanyStub.swift ├── Employee.swift ├── EmployeeMappingTests.swift ├── EmployeeStub.swift ├── Info.plist ├── Operators.swift ├── PrimaryKeyTests.swift └── RealmMappingTest.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Crust/Crust/Mapper/CRMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/Crust/Mapper/CRMapper.swift -------------------------------------------------------------------------------- /Pods/Crust/Crust/Mapper/MappingOperator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/Crust/Mapper/MappingOperator.swift -------------------------------------------------------------------------------- /Pods/Crust/Crust/Mapper/MappingProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/Crust/Mapper/MappingProtocols.swift -------------------------------------------------------------------------------- /Pods/Crust/Crust/Utilities/AnyAdaptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/Crust/Utilities/AnyAdaptor.swift -------------------------------------------------------------------------------- /Pods/Crust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/LICENSE -------------------------------------------------------------------------------- /Pods/Crust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Crust/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMArray.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMArray_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMCollection.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMListBase.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMMigration.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMMigration_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObject.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObjectStore.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMObject_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMOptionalBase.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMPlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMProperty.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMProperty_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMRealm.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMRealm_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMResults.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMResults.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMResults_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMSchema.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/RLMSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm/Realm.h: -------------------------------------------------------------------------------- 1 | ../../../../Realm/include/Realm/Realm.h -------------------------------------------------------------------------------- /Pods/JSONValueRX/JSONValue/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/JSONValue/Info.plist -------------------------------------------------------------------------------- /Pods/JSONValueRX/JSONValue/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/JSONValue/JSON.swift -------------------------------------------------------------------------------- /Pods/JSONValueRX/JSONValue/JSONable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/JSONValue/JSONable.swift -------------------------------------------------------------------------------- /Pods/JSONValueRX/JSONValue/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/JSONValue/Utilities.swift -------------------------------------------------------------------------------- /Pods/JSONValueRX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/LICENSE -------------------------------------------------------------------------------- /Pods/JSONValueRX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/JSONValueRX/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/impl/apple/cached_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/impl/apple/cached_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/impl/apple/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/impl/apple/external_commit_helper.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/impl/async_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/impl/async_query.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/impl/realm_coordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/impl/realm_coordinator.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/impl/transact_log_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/impl/transact_log_handler.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/index_set.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/object_schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/object_store.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/results.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/ObjectStore/shared_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArrayLinkView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMArrayLinkView.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/Realm/module.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealm-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/core/librealm-ios.a -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMDefines.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/Realm/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/Realm/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string_long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/array_string_long.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_backlink.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_link.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linkbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_linkbase.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linklist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_linklist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_mixed_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_string_enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/column_type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/commit_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/commit_log.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/datetime.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/descriptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/descriptor_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/disable_sync_to_disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/group_shared.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/array_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/array_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/destroy_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/destroy_guard.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/input_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/input_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/output_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/output_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/sequential_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/sequential_getter.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/simulated_failure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/simulated_failure.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/transact_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/impl/transact_log.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/importer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/lang_bind_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/lang_bind_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/link_view_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/query_conditions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/query_expression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_accessors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_basic_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_basic_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_macros.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/table_view_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/basic_system_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/basic_system_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/encrypted_file_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/encrypted_file_mapping.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/event_loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/event_loop.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/file_mapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/memory_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/memory_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/meta.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/misc_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/miscellaneous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/miscellaneous.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/platform_specific_condvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/platform_specific_condvar.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/priority_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/safe_int_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/safe_int_ops.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/string_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/string_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/tuple.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/cached_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/apple/cached_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/apple/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/async_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/async_query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/cached_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/cached_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/cached_realm_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/cached_realm_base.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/RealmSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/LICENSE -------------------------------------------------------------------------------- /Pods/RealmSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/README.md -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Error.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/List.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Object.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Property.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmCollectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/RealmCollectionType.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/RealmConfiguration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Results.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SwiftVersion.swift: -------------------------------------------------------------------------------- 1 | let swiftLanguageVersion = "2.1.1" 2 | -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/RealmSwift/Util.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/RealmSwift/build.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Crust-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Crust-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Crust-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Crust-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Crust-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Crust-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Crust.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Crust.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Crust.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Crust.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Crust/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Crust/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/JSONValueRX-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/JSONValueRX-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/JSONValueRX-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/JSONValueRX-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/JSONValueRX-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/JSONValueRX-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/JSONValueRX.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/JSONValueRX.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONValueRX/JSONValueRX.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/JSONValueRX/JSONValueRX.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrust/Pods-RealmCrust.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Pods-RealmCrustTests/Pods-RealmCrustTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Realm/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Realm/Realm-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Realm/Realm-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/Realm/Realm.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/RealmSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/RealmSwift-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/RealmSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/RealmSwift-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/RealmSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/RealmSwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/RealmSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/RealmSwift.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RealmSwift/RealmSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/Pods/Target Support Files/RealmSwift/RealmSwift.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/README.md -------------------------------------------------------------------------------- /RealmCrust.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.podspec -------------------------------------------------------------------------------- /RealmCrust.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RealmCrust.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RealmCrust.xcodeproj/xcshareddata/xcschemes/RealmCrust.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.xcodeproj/xcshareddata/xcschemes/RealmCrust.xcscheme -------------------------------------------------------------------------------- /RealmCrust.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RealmCrust.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RealmCrust/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust/.DS_Store -------------------------------------------------------------------------------- /RealmCrust/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust/Info.plist -------------------------------------------------------------------------------- /RealmCrust/RealmCrust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust/RealmCrust.h -------------------------------------------------------------------------------- /RealmCrust/RealmMappings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrust/RealmMappings.swift -------------------------------------------------------------------------------- /RealmCrustTests/Company.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/Company.swift -------------------------------------------------------------------------------- /RealmCrustTests/CompanyMappingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/CompanyMappingTests.swift -------------------------------------------------------------------------------- /RealmCrustTests/CompanyStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/CompanyStub.swift -------------------------------------------------------------------------------- /RealmCrustTests/Employee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/Employee.swift -------------------------------------------------------------------------------- /RealmCrustTests/EmployeeMappingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/EmployeeMappingTests.swift -------------------------------------------------------------------------------- /RealmCrustTests/EmployeeStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/EmployeeStub.swift -------------------------------------------------------------------------------- /RealmCrustTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/Info.plist -------------------------------------------------------------------------------- /RealmCrustTests/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/Operators.swift -------------------------------------------------------------------------------- /RealmCrustTests/PrimaryKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/PrimaryKeyTests.swift -------------------------------------------------------------------------------- /RealmCrustTests/RealmMappingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexmas/RealmCrust/HEAD/RealmCrustTests/RealmMappingTest.swift --------------------------------------------------------------------------------