-
Notifications
You must be signed in to change notification settings - Fork 21
/
Haring.podspec
22 lines (20 loc) · 981 Bytes
/
Haring.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Haring'
s.version = '2.1'
s.summary = 'Haring is a customizable and extensible Markdown parser for iOS.'
s.description = <<-DESC
Haring is a customizable and extensible Markdown parser for iOS.
It supports many of the standard Markdown elements through the use of Regular
Expressions. It also allows customization of font and color attributes for
all the Markdown elements.
DESC
s.homepage = 'https://github.com/davidlari/Haring'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'David Lari' => '[email protected]' }
s.source = { :git => 'https://github.com/davidlari/Haring.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/davidlari'
s.ios.deployment_target = '8.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.source_files = 'Haring/Classes/**/*'
s.frameworks = 'UIKit'
end