-
Notifications
You must be signed in to change notification settings - Fork 8
/
SushiBelt.podspec
27 lines (23 loc) · 1.06 KB
/
SushiBelt.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Be sure to run `pod lib lint SushiBelt.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SushiBelt'
s.version = ENV['LIB_VERSION'] || '1.0.2'
s.summary = 'Track visible views on the UIScrollView'
s.description = 'The SushiBelt can be used to measure exposure according to the ratio for all views on the UIScrollView.'
s.homepage = 'https://github.com/daangn/SushiBelt'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Geektree0101' => 'h2s1880@gmail.com' }
s.source = { :git => 'https://github.com/daangn/SushiBelt.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = "5.0"
s.source_files = 'Sources/SushiBelt/**/*'
s.test_spec 'SushiBeltTests' do |test_spec|
test_spec.source_files = 'Tests/SushiBeltTests/**/*'
end
end