From 9fcc472e09ac1a19816b5c773931202e1cff357a Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 19 Apr 2022 13:18:49 +0300 Subject: [PATCH] [Update] VerticalFlowLayout (0.1) --- .../0.1/VerticalFlowLayout.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 VerticalFlowLayout/0.1/VerticalFlowLayout.podspec diff --git a/VerticalFlowLayout/0.1/VerticalFlowLayout.podspec b/VerticalFlowLayout/0.1/VerticalFlowLayout.podspec new file mode 100644 index 0000000..5e5f195 --- /dev/null +++ b/VerticalFlowLayout/0.1/VerticalFlowLayout.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + + s.name = "VerticalFlowLayout" + s.version = "0.1" + s.summary = "This implementation is built using a UICollectionView and a custom flowLayout in Swift." + s.homepage = "https://github.com/rastaman111/VerticalFlowLayout" + s.source = { :git => "https://github.com/rastaman111/VerticalFlowLayout.git", :tag => s.version } + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { 'Alexander' => "rastaman.alex007@gmail.com" } + + s.swift_version = '5.0' + s.ios.deployment_target = '11.0' + + s.source_files = 'Sources/VerticalFlowLayout/**/*.swift' + +end