forked from TakeScoop/SwiftyButton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftyButton.podspec
26 lines (20 loc) · 888 Bytes
/
SwiftyButton.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
Pod::Spec.new do |s|
s.name = "SwiftyButton"
s.version = "0.4.0"
s.summary = "Simple and customizable button in Swift"
s.description = <<-DESC
SwiftyButton is a UIButton subclass that allows you to create shadowed/pressable buttons via a very simple interface.
DESC
s.homepage = "https://github.com/TakeScoop/SwiftyButton"
s.license = "MIT"
s.author = { "Scoop" => "[email protected]" }
s.source = { :git => "https://github.com/TakeScoop/SwiftyButton.git", :tag => "0.4.0" }
s.source_files = "SwiftyButton/SwiftyButton.swift", "SwiftyButton/SwiftyButton+ResizableImage.swift"
s.framework = "UIKit"
s.requires_arc = true
s.platform = :ios, "8.0"
s.subspec 'CustomContent' do |sp|
sp.source_files = "SwiftyButton/*.swift"
sp.dependency 'PureLayout', '~> 3.0'
end
end