-
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
fa94475
commit 4c0f6d2
Showing
1 changed file
with
26 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,26 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "ObjectBox" | ||
spec.version = "1.0.0-rc.5" | ||
spec.summary = "ObjectBox is a superfast, lightweight database for objects." | ||
|
||
spec.description = <<-DESC | ||
ObjectBox is a superfast object-oriented database with strong relation support. ObjectBox is embedded into your Android, Linux, iOS, macOS, or Windows app. | ||
DESC | ||
spec.homepage = "https://github.com/objectbox/objectbox-swift" | ||
spec.license = "Apache 2.0, ObjectBox Binary License" | ||
spec.social_media_url = "https://twitter.com/objectbox_io" | ||
|
||
spec.authors = [ "ObjectBox" ] | ||
|
||
spec.swift_version = "5.0" | ||
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.0rc5/ObjectBox-framework-1.0.zip', | ||
} | ||
spec.preserve_paths = '{templates,*.rb,*.sh,*.command,*.app}' | ||
spec.ios.vendored_frameworks = "Carthage/Build/iOS/ObjectBox.framework" | ||
spec.osx.vendored_frameworks = "Carthage/Build/Mac/ObjectBox.framework" | ||
end |