-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMKToggleButton.podspec
More file actions
20 lines (15 loc) · 900 Bytes
/
MKToggleButton.podspec
File metadata and controls
20 lines (15 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "MKToggleButton"
s.version = "1.2.0"
s.summary = "A binary toggle button that looks like the iOS7 toolbar toggles"
s.description = "This UIButton subclass emulates the rounded-rect toggle buttons seen in many iOS 7 applications."
s.homepage = "https://github.com/mikekatz/MKToggleButton"
s.screenshots = "https://raw.githubusercontent.com/mikekatz/MKToggleButton/master/screenshot/MKToggleButton.png"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { "Michael Katz" => "katzman@gmail.com" }
s.social_media_url = "http://twitter.com/TheMikeKatz"
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/mikekatz/MKToggleButton.git", :tag => "v1.2.0" }
s.source_files = 'MKToggleButton', 'MKToggleButton/**/*.{h,m}'
s.requires_arc = true
end