14 lines
557 B
Ruby
14 lines
557 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "RTLabel"
|
|
s.version = "1.0"
|
|
s.summary = "Rich text formatting based on HTML-like markups for iOS."
|
|
s.homepage = "https://github.com/honcheng/RTLabel"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { "Muh Hon Cheng" => "honcheng@gmail.com" }
|
|
s.source = { :git => "https://github.com/honcheng/RTLabel.git", :tag => "1.0" }
|
|
s.platform = :ios
|
|
s.source_files = 'RTLabelProject/Classes/RTLabel.{h,m}'
|
|
s.framework = 'CoreText'
|
|
s.requires_arc = true
|
|
end
|