From f232b4ec04e4cd35fb3c7df7296f5576e493f915 Mon Sep 17 00:00:00 2001 From: Dmitriy Dotsenko Date: Fri, 27 Dec 2019 00:02:54 +0300 Subject: [PATCH] [Add] DDPinCodeDecorator (0.0.1) --- .../0.0.1/DDPinCodeDecorator.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 DDPinCodeDecorator/0.0.1/DDPinCodeDecorator.podspec diff --git a/DDPinCodeDecorator/0.0.1/DDPinCodeDecorator.podspec b/DDPinCodeDecorator/0.0.1/DDPinCodeDecorator.podspec new file mode 100644 index 0000000..058a514 --- /dev/null +++ b/DDPinCodeDecorator/0.0.1/DDPinCodeDecorator.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |spec| + + spec.name = "DDPinCodeDecorator" + spec.platform = :ios + spec.summary = "Pin Code Decorator allows you to create a awesome controller for entering password and PIN." + spec.requires_arc = true + spec.version = "0.0.1" + spec.license = { :type => "MIT", :file => "LICENSE" } + spec.author = { "Dmitriy Dotsenko" => "d.dotsenko@icloud.com" } + spec.homepage = "https://github.com/d-dotsenko/DDPinCodeDecorator" + spec.source = { :git => "https://github.com/d-dotsenko/DDPinCodeDecorator.git", :tag => "#{spec.version}" } + spec.frameworks = "UIKit" + spec.source_files = "PinCodeDecorator/**/*.{h,swift}" + spec.swift_version = "5" + spec.ios.deployment_target = "10" +end