25 lines
916 B
Ruby
25 lines
916 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'TIFoundationUtils'
|
|
s.version = '1.39.0'
|
|
s.summary = 'Set of helpers for Foundation framework classes.'
|
|
s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' }
|
|
s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s }
|
|
|
|
s.ios.deployment_target = '10.0'
|
|
s.swift_versions = ['5.3']
|
|
|
|
sources = '**/Sources/**/*.swift'
|
|
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 'TISwiftUtils', s.version.to_s
|
|
s.framework = 'Foundation'
|
|
end
|