ScrollViewProxy/ScrollViewProxy.podspec

17 lines
671 B
Plaintext
Raw Normal View History

2020-07-14 15:43:10 +08:00
Pod::Spec.new do |s|
s.name = 'ScrollViewProxy'
2021-01-25 19:49:48 +08:00
s.version = '1.0.3'
2020-07-14 15:43:10 +08:00
s.summary = 'Helps with scroll to locations in a ScrollView'
2020-12-08 19:29:52 +08:00
s.license = { type: 'MIT' }
2020-07-14 15:43:10 +08:00
s.homepage = 'https://github.com/amzd/ScrollViewProxy'
s.author = { 'Casper Zandbergen' => 'info@casperzandbergen.nl' }
s.source = { :git => 'https://github.com/Amzd/ScrollViewProxy.git', :tag => s.version.to_s }
s.dependency 'Introspect', '>= 0.1.2'
2020-07-14 15:43:10 +08:00
s.source_files = 'Sources/**/*.swift'
2021-01-25 20:07:13 +08:00
s.swift_version = '5.1'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
2020-07-14 15:43:10 +08:00
end