From 4c0f6d2a39966a0ac268f1e17d1aec50e640fe39 Mon Sep 17 00:00:00 2001 From: Uli Date: Mon, 16 Sep 2019 18:46:58 +0200 Subject: [PATCH] [Update] ObjectBox (1.0.0-rc.5) --- ObjectBox/1.0.0-rc.5/ObjectBox.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ObjectBox/1.0.0-rc.5/ObjectBox.podspec diff --git a/ObjectBox/1.0.0-rc.5/ObjectBox.podspec b/ObjectBox/1.0.0-rc.5/ObjectBox.podspec new file mode 100644 index 0000000..be1cb71 --- /dev/null +++ b/ObjectBox/1.0.0-rc.5/ObjectBox.podspec @@ -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