-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathKWStepper.podspec
More file actions
15 lines (15 loc) · 835 Bytes
/
KWStepper.podspec
File metadata and controls
15 lines (15 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "KWStepper"
s.version = "2.5.3"
s.summary = "A stepper control with flexible UI and tailored UX."
s.homepage = "https://github.com/kyleweiner/KWStepper"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kyle Weiner" => "kyle@kylemade.com" }
s.screenshots = "https://raw.githubusercontent.com/kyleweiner/KWStepper/master/screenshots.png"
s.source = { :git => "https://github.com/kyleweiner/KWStepper.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.platform = :ios, '8.0'
s.requires_arc = true
s.description = "KWStepper is a stepper control written in Swift. Unlike UIStepper, KWStepper allows for a fully customized UI and provides callbacks for tailoring the UX."
s.swift_version = "5.1"
end