From a612624cff70a02c00860838495536fc466e740e Mon Sep 17 00:00:00 2001 From: Zaphod Beeblebrox Date: Wed, 22 May 2024 17:14:42 +0200 Subject: [PATCH] Patch 0.7.0 feat: - Added Cocoapods distribution --- MijickNavigationView.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MijickNavigationView.podspec diff --git a/MijickNavigationView.podspec b/MijickNavigationView.podspec new file mode 100644 index 0000000..a9f6a06 --- /dev/null +++ b/MijickNavigationView.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = 'MijickNavigationView' + s.summary = 'Navigation made simple' + s.description = <<-DESC + NavigationView is a free and open-source library dedicated for SwiftUI that makes navigation easier and much cleaner. + DESC + + s.version = '0.7.0' + s.ios.deployment_target = '15.0' + s.swift_version = '5.0' + + s.source_files = 'Sources/**/*' + s.frameworks = 'SwiftUI', 'Foundation' + + s.homepage = 'https://github.com/Mijick/NavigationView.git' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'Tomasz Kurylik' => 'tomasz.kurylik@mijick.com' } + s.source = { :git => 'https://github.com/Mijick/NavigationView.git', :tag => s.version.to_s } +end