-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathMultiToggleButton.podspec
More file actions
26 lines (18 loc) · 934 Bytes
/
MultiToggleButton.podspec
File metadata and controls
26 lines (18 loc) · 934 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
26
Pod::Spec.new do |s|
s.name = "MultiToggleButton"
s.version = "1.8.8"
s.summary = "Multiple state tap to toggle UIButton in Swift"
s.description = <<-DESC
A UIButton subclass that implements tap-to-toggle button text. (Like the camera flash and timer buttons)
DESC
s.homepage = "https://github.com/yonat/MultiToggleButton"
s.screenshots = "https://raw.githubusercontent.com/yonat/MultiToggleButton/master/screenshots/toggle.gif"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yonat Sharon" => "yonat@ootips.org" }
s.swift_versions = ['5.0']
s.platform = :ios, "11.0"
s.requires_arc = true
s.source = { :git => "https://github.com/yonat/MultiToggleButton.git", :tag => s.version }
s.source_files = "Sources/*.swift"
s.resource_bundles = {s.name => ['Sources/PrivacyInfo.xcprivacy']}
end