-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIButtonExtension.podspec
More file actions
23 lines (16 loc) · 889 Bytes
/
Copy pathUIButtonExtension.podspec
File metadata and controls
23 lines (16 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "UIButtonExtension"
spec.version = "0.3.0"
spec.summary = "Add checkboxes and radio buttons with this library."
spec.description = <<-DESC
This CocoaPods library allows you to use customizable Radio buttons and checkboxes since Swift's UIKit doesn't support these natively
DESC
spec.homepage = "https://github.com/shadow-of-arman/UIButtonExtension"
spec.license = { :type => "Apache", :file => "LICENSE" }
spec.author = { "Arman" => "shadowofarman@hotmail.com" }
spec.ios.deployment_target = "12"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/shadow-of-arman/UIButtonExtension.git", :tag => "#{spec.version}" }
spec.source_files = "Classes", "UIButtonExtension/*.{h,m,swift}"
spec.resources = "UIButtonExtension/*.xcassets"
end