-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBadgeLabel.podspec
43 lines (29 loc) · 1.05 KB
/
BadgeLabel.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Pod::Spec.new do |s|
s.name = "BadgeLabel"
s.version = "1.1.0"
s.summary = "Simple animatable badge, based on UILabel and using CALayer"
s.description = <<-DESC
Basic usage:
```objective-c
BadgeLabel *badge = [BadgeLabel new];
badge.text = @"42";
```
Configure appearance:
```objective-c
badge.backgroundColor = [UIColor blueColor];
badge.hasBorder = YES;
badge.hasGloss = NO;
```
DESC
s.homepage = "https://github.com/yonat/BadgeLabel"
s.screenshots = "http://ootips.org/yonat/wp-content/uploads/2012/02/badge.png"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yonat Sharon" => "[email protected]" }
s.social_media_url = "http://twitter.com/yonatsharon"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/yonat/BadgeLabel.git", :tag => s.version }
s.source_files = "BadgeLabel.{h,m}", "BadgeTableViewCell.{h,m}"
s.exclude_files = "BadgeView", "BadgeView.xcodeproj"
s.frameworks = 'QuartzCore'
s.requires_arc = true
end