18 lines
831 B
Ruby
18 lines
831 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CoreTextToy"
|
|
s.version = "1.0.1"
|
|
s.summary = "This codebase implements CCoreTextLabel, a UILabel style class that supports attributed strings and simple HTML. This pod links to a fork of the original repo as the original does not use version tags right now."
|
|
s.homepage = "https://github.com/elektrojunge/CoreTextToy"
|
|
|
|
# Specify the license type. CocoaPods detects automatically the license file if it is named
|
|
s.license = '2-clause BSD licence (Simplified BSD) Licence'
|
|
s.author = { "Jonathan Wight" => "schwa@toxicsoftware.com" }
|
|
|
|
s.source = { :git => 'https://github.com/elektrojunge/CoreTextToy.git', :tag => '1.0.1'}
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'Source/**/*.{h,m}'
|
|
s.framework = 'CoreText'
|
|
s.requires_arc = true
|
|
|
|
end
|