From 856dfabbd6d11a4cf2a955596958443dca3a5914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20S=C3=A1enz?= Date: Mon, 5 Jun 2023 15:40:02 -0500 Subject: [PATCH] Added podspec --- LookingGlassUI.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 LookingGlassUI.podspec diff --git a/LookingGlassUI.podspec b/LookingGlassUI.podspec new file mode 100644 index 0000000..62afe95 --- /dev/null +++ b/LookingGlassUI.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'LookingGlassUI' + s.version = '0.3.1' + s.summary = 'SwiftUI views that can rotate views based on device orientation.' + + s.description = <<-DESC + SwiftUI views that can rotate views based on device orientation. It's especially useful in faking a light reflection to create a shimmering effect when the device rotates. + DESC + + s.homepage = 'https://github.com/fethica/FRadioPlayer' + s.author = { 'Ryan Lintott' => '@ryanlintott' } + s.source = { :git => 'https://github.com/ryanlintott/LookingGlassUI.git', :tag => s.version.to_s } + s.ios.deployment_target = '14.0' + s.source_files = 'Sources/LookingGlassUI/**/*.swift' +end