-
Notifications
You must be signed in to change notification settings - Fork 26
/
NVUIGradientButton.podspec
37 lines (27 loc) · 1.36 KB
/
NVUIGradientButton.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
Pod::Spec.new do |s|
s.name = "NVUIGradientButton"
s.version = "1.6.1"
s.summary = "A beautiful customizable iOS button with gradient."
s.description = <<-DESC
# NVUIGradientButton
A beautiful customizable iOS button, flat on iOS 7, with gradient on earlier versions.
![A screenshot rendering NVUIGradient buttons](https://raw.github.com/nverinaud/NVUIGradientButton/master/images/screen1-6-1.png)
## Requirements
* You can use ARC or not, this library supports both
* iOS 4+
## Usage
* Add `lib/NVUIGradientButton.{h|m}` to your project
* Drop a view into a nib and set its class to `NVUIGradientButton` or instanciate one using `[NVUIGradientButton initWithFrame:frame style:style];`
* Configure the view
For more examples, have a look at the `NVUIGradientButtonSample` project.
## License
Copyright (c) 2013 [Nicolas VERINAUD](http://www.nverinaud.com). Released under the MIT license.
DESC
s.homepage = "https://github.com/nverinaud/NVUIGradientButton"
s.license = 'MIT'
s.author = { "Nicolas VERINAUD" => "[email protected]" }
s.source = { :git => "https://github.com/nverinaud/NVUIGradientButton.git", :tag => "v1.6.1" }
s.platform = :ios
s.source_files = 'lib', 'lib/**/*.{h,m}'
s.requires_arc = false
end