-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathALButton.podspec
More file actions
21 lines (17 loc) · 818 Bytes
/
ALButton.podspec
File metadata and controls
21 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "ALButton"
s.version = "0.0.1"
s.summary = "UIButton, with some extra flavor"
s.description = <<-DESC
This control is a subclass of Apple's default UIButton. It adds some functionality,
cuts the number of lines needed to customize the look and behavior of the UIButton,
and makes use of some niceties of Swift.
DESC
s.homepage = "http://github.com/al7/ALButton"
s.license = "MIT"
s.author = { "Alex Leite" => "admin@al7dev.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/al7/ALButton.git", :tag => "0.0.1" }
s.source_files = "ALButton/Source", "ALButton/Source/**/*.{h,m,swift}"
s.requires_arc = true
end