-
Notifications
You must be signed in to change notification settings - Fork 164
/
SFTagView.podspec
29 lines (20 loc) · 1010 Bytes
/
SFTagView.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
27
28
29
Pod::Spec.new do |s|
s.name = "SFTagView"
s.version = "0.8"
s.summary = "SFTagView is a powerful UIView subclass"
s.description = <<-DESC
SFTagView is a view for display tags
- flexible layout, dynamic view height
- support depends autolayout constraints to get SFTagView's width, It's useful
- support specify set view's width of frame
DESC
s.homepage = "http://github.com/shiweifu/SFTagView"
s.license = "MIT"
s.author = { "shiweifu" => "shiweifu@gmail.com" }
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/shiweifu/SFTagView.git", :tag => "0.8" }
s.source_files = "WrapViewWithAutolayout/*.{h,m}"
s.exclude_files = "WrapViewWithAutolayout/AppDelegate.{h,m}", "WrapViewWithAutolayout/ViewController.{h,m}", "WrapViewWithAutolayout/main.m"
s.framework = "UIKit", "Foundation"
s.requires_arc = true
end