-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCuteAttribute.podspec
More file actions
25 lines (19 loc) · 887 Bytes
/
CuteAttribute.podspec
File metadata and controls
25 lines (19 loc) · 887 Bytes
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
Pod::Spec.new do |s|
s.name = "CuteAttribute"
s.version = "1.2.5"
s.summary = "A elegant way to use attributed string in swift."
s.description = <<-DESC
* A elegant way to deal with attributed string in swift.
* It's convenient to create attributed string by `.cute`,
* whatever from `String`, `NSString`, `NSAttributedString` or `NSMutableAttributedString`.
* It's so amazing that almost all method support `chaining`.
DESC
s.homepage = "https://github.com/qiuncheng/CuteAttribute"
s.license = "MIT"
s.author = {"qiuncheng" => "qiuncheng@gmail.com"}
s.platform = :ios, "8.0"
s.source = {:git => "https://github.com/qiuncheng/CuteAttribute.git", :tag => "#{s.version}"}
s.source_files = "CuteAttribute/*.{swift,h}"
s.framework = "UIKit"
s.requires_arc = true
end