Files
JBChartView/CoreTextToy/1.0.2/CoreTextToy.podspec
T
2013-02-05 17:22:10 +01:00

18 lines
711 B
Ruby

Pod::Spec.new do |s|
s.name = "CoreTextToy"
s.version = "0.0.1"
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', :commit => 'HEAD'}
s.platform = :ios
s.source_files = 'Classes', 'Source/**/*.{h,m}'
s.framework = 'CoreText'
s.requires_arc = true
end