forked from zekunyan/TTGTagCollectionView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTTGTagCollectionView.podspec
25 lines (20 loc) · 1.18 KB
/
TTGTagCollectionView.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
Pod::Spec.new do |s|
s.name = "TTGTagCollectionView"
s.version = "0.4.0"
s.summary = "Show simple text tags or custom tag views in a vertical scrollable view."
s.description = <<-DESC
TTGTagCollectionView is useful for showing different size tag views in a vertical scrollable view. And if you only want to show text tags, you can use TTGTextTagCollectionView instead, which has more simple api. At the same time, It is highly customizable that many features of the text tag can be configured, like the tag font size and the background color.
DESC
s.homepage = "https://github.com/zekunyan/TTGTagCollectionView"
s.license = 'MIT'
s.author = { "zekunyan" => "[email protected]" }
s.source = { :git => "https://github.com/zekunyan/TTGTagCollectionView.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/zorro_tutuge'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'TTGEmojiRate' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
end