-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c43d0d8
commit fa9252e
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'ObjectBox' | ||
spec.version = '1.1.1-rc2' | ||
spec.summary = 'ObjectBox Swift is a superfast, lightweight database for Swift objects.' | ||
|
||
spec.description = 'ObjectBox is a superfast object-oriented database with strong relation support. ObjectBox is embedded into your Android, Linux, iOS, macOS, or Windows app.' | ||
spec.homepage = 'https://github.com/objectbox/objectbox-swift-spec-staging' | ||
spec.authors = [ 'ObjectBox' ] | ||
spec.license = 'Apache 2.0, ObjectBox Binary License' | ||
spec.social_media_url = 'https://twitter.com/objectbox_io' | ||
|
||
spec.swift_version = '5.1' | ||
spec.ios.deployment_target = '10.3' | ||
spec.osx.deployment_target = '10.10' | ||
|
||
# How to obtain the contents | ||
spec.source = { | ||
:http => 'https://github.com/objectbox/objectbox-swift-spec-staging/releases/download/v1.1.1-rc2/ObjectBox-framework-1.1.1-rc2.zip' | ||
} | ||
spec.preserve_paths = '{templates,*.rb,*.sh,*.command,*.app,*.generated.swift,Carthage/Build/Mac/OBXCodeGen.framework}' | ||
spec.ios.vendored_frameworks = 'Carthage/Build/iOS/ObjectBox.framework' | ||
spec.osx.vendored_frameworks = 'Carthage/Build/Mac/ObjectBox.framework' | ||
end | ||
|