mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-13 12:50:34 +01:00
# Conflicts: # Cartfile # Carthage/Checkouts/GCDKit # CoreStore.podspec # CoreStore.xcodeproj/project.pbxproj # CoreStoreDemo/CoreStoreDemo.xcodeproj/project.pbxproj # CoreStoreTests/BaseTests/BaseTestCase.swift # CoreStoreTests/FromTests.swift # CoreStoreTests/GroupByTests.swift # CoreStoreTests/OrderByTests.swift # CoreStoreTests/StorageInterfaceTests.swift # CoreStoreTests/TweakTests.swift # CoreStoreTests/WhereTests.swift # README.md # Sources/Internal/CoreStoreFetchRequest.swift # Sources/Internal/NSManagedObjectContext+Querying.swift # Sources/Internal/NSManagedObjectModel+Setup.swift # Sources/Migrating/DataStack+Migration.swift # Sources/ObjectiveC/CSSQliteStore.swift # Sources/ObjectiveC/CSStorageInterface.swift # Sources/ObjectiveC/CoreStoreBridge.swift # Sources/Observing/ListMonitor.swift # Sources/Setup/DataStack.swift # Sources/Setup/StorageInterfaces/ICloudStore.swift # Sources/Setup/StorageInterfaces/LegacySQLiteStore.swift # Sources/Setup/StorageInterfaces/SQLiteStore.swift # Sources/Setup/StorageInterfaces/StorageInterface.swift
23 lines
1023 B
Ruby
23 lines
1023 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CoreStore"
|
|
s.version = "2.1.1"
|
|
s.license = "MIT"
|
|
s.summary = "Unleashing the real power of Core Data with the elegance and safety of Swift"
|
|
s.homepage = "https://github.com/JohnEstropia/CoreStore"
|
|
s.author = { "John Rommel Estropia" => "rommel.estropia@gmail.com" }
|
|
s.source = { :git => "https://github.com/JohnEstropia/CoreStore.git", :tag => s.version.to_s }
|
|
|
|
s.ios.deployment_target = "8.0"
|
|
s.osx.deployment_target = "10.10"
|
|
s.watchos.deployment_target = "2.0"
|
|
s.tvos.deployment_target = "9.0"
|
|
|
|
s.source_files = "Sources", "Sources/**/*.{swift,h,m}"
|
|
s.public_header_files = "Sources/**/*.h"
|
|
s.frameworks = "Foundation", "CoreData"
|
|
s.requires_arc = true
|
|
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS[config=Debug]' => '-D USE_FRAMEWORKS -D DEBUG',
|
|
'OTHER_SWIFT_FLAGS[config=Release]' => '-D USE_FRAMEWORKS',
|
|
'GCC_PREPROCESSOR_DEFINITIONS' => 'USE_FRAMEWORKS=1' }
|
|
end
|