[Add] Cursors (0.6.0)

This commit is contained in:
Ivan Smolin 2022-04-18 19:56:52 +03:00
parent 6dfa148949
commit 81acbdd68d
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = 'Cursors'
s.version = '0.6.0'
s.summary = 'Any type of pagination using cursor pattern.'
s.homepage = 'https://github.com/petropavel13/Cursors/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' }
s.source = { :git => 'https://github.com/petropavel13/Cursors.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_versions = ['5.0']
s.source_files = 'Sources/**/*'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/CursorsTests/**/*.swift'
end
end