From d7a3e72291a15db4fe935dcc8d55abaad2465bd6 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 15 Apr 2022 16:07:03 +0300 Subject: [PATCH] Completed podspec file --- VerticalFlowLayout.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 VerticalFlowLayout.podspec diff --git a/VerticalFlowLayout.podspec b/VerticalFlowLayout.podspec new file mode 100644 index 0000000..0e170ff --- /dev/null +++ b/VerticalFlowLayout.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |spec| + + spec.name = "VerticalFlowLayout" + spec.version = "0.0.1" + spec.summary = "Tinder UI built with UICollectionView in Swift." + spec.homepage = "https://github.com/rastaman111/VerticalFlowLayout" + spec.source = { :git => "https://github.com/rastaman111/VerticalFlowLayout.git", :tag => spec.version } + spec.license = { :type => "MIT", :file => "FILE_LICENSE" } + spec.author = { 'Alexander' => "rastaman.alex007@gmail.com" } + + spec.swift_version = '5.1' + spec.ios.deployment_target = '11.0' + + spec.source_files = 'Sources/*.swift' +end