forked from aloco/SimpleButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleButton.podspec
More file actions
15 lines (15 loc) · 852 Bytes
/
SimpleButton.podspec
File metadata and controls
15 lines (15 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "SimpleButton"
s.version = "4.0.1"
s.summary = "Simple UIButton subclass with additional state change animations (e.g. backgroundColor)"
s.description = "Simple UIButton subclass with animated, state-aware attributes. Easy to subclass and configure!"
s.homepage = "https://github.com/aloco/SimpleButton"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Andreas Tinoco Lobo" => "andreas@tinoco-lobo.at" }
s.platform = :ios
s.ios.deployment_target = "8.1"
s.source = { :git => "https://github.com/aloco/SimpleButton.git", :tag => s.version }
s.requires_arc = true
s.source_files = "SimpleButton/*.swift"
s.swift_version = "4.0"
end