From 81acbdd68df187856cd6bbbc29d0e51144a7320f Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 18 Apr 2022 19:56:52 +0300 Subject: [PATCH] [Add] Cursors (0.6.0) --- Cursors/0.6.0/Cursors.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cursors/0.6.0/Cursors.podspec diff --git a/Cursors/0.6.0/Cursors.podspec b/Cursors/0.6.0/Cursors.podspec new file mode 100644 index 0000000..a12aee0 --- /dev/null +++ b/Cursors/0.6.0/Cursors.podspec @@ -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