From cbdedfcd32c014bb021981ab5b954a3a73b08dd3 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 12 Feb 2024 11:02:52 +0300 Subject: [PATCH] [Update] TIBottomSheet (1.56.0) --- TIBottomSheet/1.56.0/TIBottomSheet.podspec | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 TIBottomSheet/1.56.0/TIBottomSheet.podspec diff --git a/TIBottomSheet/1.56.0/TIBottomSheet.podspec b/TIBottomSheet/1.56.0/TIBottomSheet.podspec new file mode 100644 index 0000000..569a274 --- /dev/null +++ b/TIBottomSheet/1.56.0/TIBottomSheet.podspec @@ -0,0 +1,29 @@ +Pod::Spec.new do |s| + s.name = 'TIBottomSheet' + s.version = '1.56.0' + s.summary = 'Base models for creating bottom sheet view controllers' + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/src/tag/' + s.version.to_s + '/' + s.name + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'castlele' => 'nikita.semenov@touchin.ru', + 'petropavel13' => 'ivan.smolin@touchin.ru'} + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } + + s.ios.deployment_target = '12.0' + s.swift_versions = ['5.7'] + + sources = 'Sources/**/*' + if ENV["DEVELOPMENT_INSTALL"] # installing using :path => + s.source_files = sources + s.exclude_files = s.name + '.app' + else + s.source_files = s.name + '/' + sources + s.exclude_files = s.name + '/*.app' + end + + s.dependency 'TIUIElements', s.version.to_s + s.dependency 'TIUIKitCore', s.version.to_s + s.dependency 'TISwiftUtils', s.version.to_s + s.dependency 'PanModal', '~> 1.3.0' + +end +