From 70701f7cf33293a2b08863e37a00ad948c55fee9 Mon Sep 17 00:00:00 2001 From: mustiikhalil <26250654+mustiikhalil@users.noreply.github.com> Date: Wed, 19 Jan 2022 19:06:12 +0100 Subject: [PATCH] Adds cocoapods podspec file (#9) --- LCLabel.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LCLabel.podspec diff --git a/LCLabel.podspec b/LCLabel.podspec new file mode 100644 index 0000000..cbb1519 --- /dev/null +++ b/LCLabel.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'LCLabel' + s.version = '0.1.0' + s.summary = 'LCLabel is a TextKit 2 based UIView' + s.description = "LCLabel is a TextKit 2 based UIView that mimics a the behaviour of UILabel & UITextView" + s.homepage = 'https://github.com/mustiikhalil/LCLabel' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'mustii' => 'mustii@mmk.one' } + s.source = { :git => 'https://github.com/mustiikhalil/LCLabel.git', :tag => s.version.to_s, :submodules => true } + s.ios.deployment_target = '13.0' + s.swift_version = '5.0' + s.source_files = 'Sources/**/*' + s.exclude_files = [ 'Sources/LCLabel/LCLabel.docc' ] +end \ No newline at end of file