-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSwiftyDown.podspec
28 lines (24 loc) · 1.18 KB
/
SwiftyDown.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = "SwiftyDown"
s.version = "0.0.5"
s.summary = "Pure swift implementation markdown parser, convert to NSAttributedString"
s.description = <<-DESC
Simple, Elegant, Powerful markdown parser written in swift. Provides friendly interface to convert markdown string to NSAttributedString.
DESC
s.homepage = "https://github.com/aaaron7/SwiftyDown"
s.screenshots = "https://raw.githubusercontent.com/aaaron7/SwiftyDown/master/SwiftyDownExample/screenshots.png"
s.license = 'LICENSE.txt'
s.author = { "aaaron7" => "[email protected]" }
s.source = { :git => "https://github.com/aaaron7/SwiftyDown.git", :tag => s.version.to_s }
s.social_media_url = 'http://weibo.com/roseofsharon'
s.platform = :ios, '8.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'SwiftyDown/*'
# s.resources = 'Assets'
# s.ios.exclude_files = 'Classes/osx'
# s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'Foundation', 'UIKit'
end