From bb87938ae3bae5fa2df7d5e927a9eeddfd8bc8a1 Mon Sep 17 00:00:00 2001 From: Nikita Semenov Date: Sun, 9 Jul 2023 22:37:53 +0300 Subject: [PATCH] [Update] TIDeveloperUtils (1.49.0) --- .../1.49.0/TIDeveloperUtils.podspec | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 TIDeveloperUtils/1.49.0/TIDeveloperUtils.podspec diff --git a/TIDeveloperUtils/1.49.0/TIDeveloperUtils.podspec b/TIDeveloperUtils/1.49.0/TIDeveloperUtils.podspec new file mode 100644 index 0000000..3f26677 --- /dev/null +++ b/TIDeveloperUtils/1.49.0/TIDeveloperUtils.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = 'TIDeveloperUtils' + s.version = '1.49.0' + s.summary = 'Universal web view API' + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', + 'castlele' => 'nikita.semenov@touchin.ru' } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } + + s.ios.deployment_target = '11.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 'TIUIKitCore', s.version.to_s + s.dependency 'TIUIElements', s.version.to_s + s.dependency 'TISwiftUtils', s.version.to_s + +end