-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathKBRoundedButton.podspec
More file actions
28 lines (18 loc) · 1.48 KB
/
KBRoundedButton.podspec
File metadata and controls
28 lines (18 loc) · 1.48 KB
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
Pod::Spec.new do |s|
s.name = "KBRoundedButton"
s.version = "1.0.4"
s.summary = "Create beautiful rounded rect button with dynamic colors and activity indicator completely in Interface Builder"
s.description = <<-DESC
KBRoundedButton is a subclass of UIButton that allows developers to create beutiful flat buttons that change colors in different states and are configurable from Interface Builder. KBRoundedButton can also display UIActivityIndicatorView when it's state is set to working so it can be easily used in places where async tasks are started.
DESC
s.homepage = "https://github.com/burczyk/KBRoundedButton"
s.screenshots = "https://raw.githubusercontent.com/burczyk/KBRoundedButton/master/assets/animation.gif", "https://raw.githubusercontent.com/burczyk/KBRoundedButton/master/assets/screenshot1.png", "https://raw.githubusercontent.com/burczyk/KBRoundedButton/master/assets/screenshot2.png", "https://raw.githubusercontent.com/burczyk/KBRoundedButton/master/assets/screenshot3.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kamil Burczyk" => "kamil.burczyk@gmail.com" }
s.social_media_url = "http://twitter.com/KamilBurczyk"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/burczyk/KBRoundedButton.git", :tag => "1.0.4" }
s.source_files = 'KBRoundedButton/*.{h,m}'
s.frameworks = "UIKit", "CoreGraphics"
s.requires_arc = true
end