-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSUCheckButton.podspec
More file actions
25 lines (21 loc) · 949 Bytes
/
SUCheckButton.podspec
File metadata and controls
25 lines (21 loc) · 949 Bytes
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
Pod::Spec.new do |s|
s.name = "SUCheckButton"
s.version = "0.2.0"
s.summary = "light-weight check button in Swift."
s.description = <<-DESC
light-weight check button in Swift.
Equip @IBInspectable, @IBDesignable.
SUCheckButton is Subclass of UIControl.
DESC
s.homepage = "https://github.com/sgr-ksmt/SUCheckButton"
s.screenshots = "https://raw.githubusercontent.com/sgr-ksmt/SUCheckButton/master/screenshots/screenshot1.png"
s.license = 'MIT'
s.author = { "Suguru Kishimoto" => "melodydance.k.s@gmail.com" }
s.source = { :git => "https://github.com/sgr-ksmt/SUCheckButton.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end