forked from frankrausch/Typographizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypographizer.podspec
24 lines (21 loc) · 1.15 KB
/
Typographizer.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
Pod::Spec.new do |s|
s.name = "Typographizer"
s.version = "0.1.0"
s.summary = "Smart Quotes for Swift Apps."
s.description = <<-DESC
Typographizer turns those pesky dumb quotes (""/'') and apostrophes (') into their beautiful,
curly, localized counterparts. Because good typography uses smart quotes, not dumb quotes
and we should not let the internet kill smart quotes. Speaking of smartness: Typographizer is smart
enough to skip HTML tags and everything between certain tags (like <code> and <pre>).
DESC
s.homepage = "https://github.com/frankrausch/Typographizer"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { 'Frank Rausch' => '[email protected]' }
s.source = { :git => "https://github.com/frankrausch/Typographizer.git", :tag => "#{s.version}" }
s.source_files = "Typographizer/*.{swift}"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
spec.cocoapods_version = '>= 1.2.0'
end