-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftGradientButton.podspec
28 lines (24 loc) · 1.42 KB
/
SwiftGradientButton.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
#
# Be sure to run `pod spec lint SwiftGradientButton.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "SwiftGradientButton"
spec.version = "0.2.0"
spec.summary = "A fully customisable subclass of the UIButton which allows you to create beautiful gradient buttons."
spec.description = <<-DESC
SwiftGradientButton is a customisable subclass of UIButton for iOS. It can be used to easily apply custom gradients on UIButton with custom @IBInspectable startColor, endColor, startPoint, endPoint and cornerRadius properties.
DESC
spec.homepage = "https://github.com/suhitp/SwiftGradientButton"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "Suhit Patil" => "[email protected]" }
spec.source = { :git => "https://github.com/suhitp/SwiftGradientButton.git", :tag => "#{spec.version}" }
spec.source_files = "GradientButton/GradientButton/Source/*.{swift}"
spec.exclude_files = ["GradientButton/Example/", "GradientButton/ExampleUITests/", "GradientButton/GradientButton/*.plist"]
spec.platform = :ios, "11.0"
spec.swift_version = '5.0'
spec.requires_arc = true
end