18 lines
708 B
Ruby
18 lines
708 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CoreTextToy"
|
|
s.version = "1.0.2"
|
|
s.summary = "This codebase implements CCoreTextLabel, a UILabel style class that supports attributed strings and simple HTML."
|
|
s.homepage = "https://github.com/schwa/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@schwa.io" }
|
|
|
|
s.source = { :git => 'https://github.com/schwa/CoreTextToy.git',:tag => '1.0.2'}
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'Source/**/*.{h,m}'
|
|
s.framework = 'CoreText'
|
|
s.requires_arc = true
|
|
|
|
end
|