From a9fc875a66733ea0f71718e7ca31796a4d2529de Mon Sep 17 00:00:00 2001 From: "virginia.pujols" Date: Thu, 27 Apr 2023 12:10:46 -0400 Subject: [PATCH] Add Cocoapod support --- YMatterType.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 YMatterType.podspec diff --git a/YMatterType.podspec b/YMatterType.podspec new file mode 100644 index 0000000..041a72c --- /dev/null +++ b/YMatterType.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'YMatterType' + s.version = '1.6.0' + s.summary = 'An opinionated take on Design System Typography for iOS and tvOS' + s.homepage = 'https://github.com/yml-org/YMatterType' + s.license = { :type => 'Apache 2.0' } + s.authors = { 'Y Media Labs' => 'support@ymedialabs.com' } + s.source = { :git => 'https://github.com/yml-org/YMatterType.git', :tag => s.version } + s.ios.deployment_target = '14.0' + s.tvos.deployment_target = '14.0' + s.swift_versions = ['5'] + s.source_files = 'Sources/YMatterType/**/*' +end