-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHTMLToAttributedString.podspec
More file actions
16 lines (16 loc) · 899 Bytes
/
HTMLToAttributedString.podspec
File metadata and controls
16 lines (16 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "HTMLToAttributedString"
s.version = "1.0b1"
s.summary = "A (very) simple, regex based HTML to NSAttributedString parser."
s.description = <<-DESC
HTMLToAttributedString takes a simple HTML string and parses it into an attributed string. It uses regexes, beware.
DESC
s.homepage = "https://bitbucket.org/shinydevelopment/htmlparser/overview"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Shiny Development" => "contact@shinydevelopment.com", "Dave Verwer" => "dave.verwer@shinydevelopment.com", "Greg Spiers" => "greg.spiers@shinydevelopment.com" }
s.platform = :ios, '7.0'
s.source = { :git => "https://daveverwer@bitbucket.org/shinydevelopment/htmlparser.git", :tag => "1.2" }
s.source_files = "SDScreenshotCapture"
s.framework = 'QuartzCore'
s.requires_arc = true
end