From 337f1ad37d2542f3f7eca4de155824a5bedba3e8 Mon Sep 17 00:00:00 2001 From: William Baker Date: Fri, 8 Apr 2022 16:09:20 -0400 Subject: [PATCH] Add podspec --- XUI.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 XUI.podspec diff --git a/XUI.podspec b/XUI.podspec new file mode 100644 index 0000000..e998b23 --- /dev/null +++ b/XUI.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = 'XUI' + s.version = '0.1.0' + s.summary = 'XUI makes modular, testable architectures for SwiftUI apps a breeze!' + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.homepage = 'https://github.com/quickbirdstudios/XUI' + s.source = { :git => 'https://github.com/quickbirdstudios/XUI.git', :branch => 'main' } + s.author = 'QuickBird Studios' + + s.ios.deployment_target = '13.0' + s.osx.deployment_target = '10.15' + s.swift_versions = '5.3' + s.source_files = 'Sources/XUI/**/*.swift' + + s.frameworks = 'SwiftUI', 'Combine' +end