forked from kazuhiro4949/StringStylizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StringStylizer.podspec
26 lines (21 loc) · 1.1 KB
/
StringStylizer.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
#
# Be sure to run `pod lib lint StringStylizer.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "StringStylizer"
s.version = "3.1.0"
s.summary = "Type strict builder class for NSAttributedString."
s.description = <<-DESC
StringStylizer makes NSAttributedString more intuitive with Method chain and Operator. Building NSAttributedString is so difficult that it requires us to remember attribute names and types. If you do that with StringStylizer, There is no need to remember them.
DESC
s.homepage = "https://github.com/kazuhiro4949/StringStylizer"
s.license = 'MIT'
s.author = { "Kazuhiro Hayashi" => "[email protected]" }
s.source = { :git => "https://github.com/kazuhiro4949/StringStylizer.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'StringStylizer/*'
end