123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- Pod::Spec.new do |s|
- s.name = 'Realm'
- version = `sh build.sh get-version`
- s.version = version
- s.summary = 'Realm is a modern data framework & database for iOS, macOS, tvOS & watchOS.'
- s.description = <<-DESC
- The Realm Mobile Database, for Objective-C. (If you want to use Realm from Swift, see the “RealmSwift” pod.)
- The Realm Mobile Database is a fast, easy-to-use replacement for Core Data & SQLite. Use it with the Realm Mobile Platform for realtime, automatic data sync. Works on iOS, macOS, tvOS & watchOS. Learn more and get help at https://realm.io.
- DESC
- s.homepage = "https://realm.io"
- s.source = { :git => 'https:
- s.author = { 'Realm' => 'help@realm.io' }
- s.library = 'c++', 'z'
- s.requires_arc = true
- s.social_media_url = 'https:
- has_versioned_docs = !(version =~ /alpha|beta|rc/)
- s.documentation_url = "https://realm.io/docs/objc/#{has_versioned_docs ? s.version : 'latest'}"
- s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
- public_header_files = 'includeRLMArray.h',
- 'includeRLMCollection.h',
- 'includeRLMConstants.h',
- 'includeRLMListBase.h',
- 'includeRLMMigration.h',
- 'includeRLMObject.h',
- 'includeRLMObjectBase.h',
- 'includeRLMObjectSchema.h',
- 'includeRLMOptionalBase.h',
- 'includeRLMPlatform.h',
- 'includeRLMProperty.h',
- 'includeRLMRealm.h',
- 'includeRLMRealm+Sync.h',
- 'includeRLMRealmConfiguration+Sync.h',
- 'includeRLMRealmConfiguration.h',
- 'includeRLMResults.h',
- 'includeRLMSchema.h',
- 'includeRLMSyncConfiguration.h',
- 'includeRLMSyncCredentials.h',
- 'includeRLMSyncManager.h',
- 'includeRLMSyncPermission.h',
- 'includeRLMSyncSession.h',
- 'includeRLMSyncSubscription.h',
- 'includeRLMSyncUser.h',
- 'includeRLMSyncUtil.h',
- 'includeRLMThreadSafeReference.h',
- 'includeNSError+RLMSync.h',
- 'includeRealm.h',
- # Realm.Dynamic module
- 'includeRLMRealm_Dynamic.h',
- 'includeRLMObjectBase_Dynamic.h'
- # Realm.Private module
- private_header_files = 'includeRLMAccessor.h',
- 'includeRLMArray_Private.h',
- 'includeRLMCollection_Private.h',
- 'includeRLMListBase.h',
- 'includeRLMObjectBase_Private.h',
- 'includeRLMObjectSchema_Private.h',
- 'includeRLMObjectStore.h',
- 'includeRLMObject_Private.h',
- 'includeRLMOptionalBase.h',
- 'includeRLMProperty_Private.h',
- 'includeRLMRealmConfiguration_Private.h',
- 'includeRLMRealm_Private.h',
- 'includeRLMResults_Private.h',
- 'includeRLMSchema_Private.h',
- 'includeRLMSyncConfiguration_Private.h',
- 'includeRLMSyncUtil_Private.h'
- source_files = 'Realm
|