From 3c5297aa5e0ed56f913a4a87c2fde8fcc67f6e66 Mon Sep 17 00:00:00 2001 From: "virginia.pujols" Date: Thu, 27 Apr 2023 16:00:41 -0400 Subject: [PATCH] Add support for CocoaPods --- YCoreUI.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 YCoreUI.podspec diff --git a/YCoreUI.podspec b/YCoreUI.podspec new file mode 100644 index 0000000..780b3b6 --- /dev/null +++ b/YCoreUI.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'YCoreUI' + s.version = '1.7.0' + s.summary = 'Core components for iOS to accelerate building user interfaces in code.' + s.homepage = 'https://yml-org.github.io/YCoreUI' + s.license = { :type => 'Apache 2.0' } + s.authors = { 'Y Media Labs' => 'support@ymedialabs.com' } + s.source = { :git => 'https://github.com/yml-org/YCoreUI.git', :tag => s.version } + s.ios.deployment_target = '14.0' + s.tvos.deployment_target = '14.0' + s.swift_versions = ['5'] + s.source_files = 'Sources/YCoreUI/**/*' +end