Skip to content

Commit

Permalink
Adds cocoapods podspec file (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustiikhalil committed Jan 19, 2022
1 parent a601f04 commit 70701f7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions LCLabel.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]' }
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

0 comments on commit 70701f7

Please sign in to comment.