forked from yannickl/SnappingStepper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnappingStepper.podspec
More file actions
20 lines (17 loc) · 807 Bytes
/
SnappingStepper.podspec
File metadata and controls
20 lines (17 loc) · 807 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 = 'SnappingStepper'
s.version = '3.0.1'
s.license = 'MIT'
s.summary = 'An elegant alternative to the UIStepper written in Swift'
s.homepage = 'https://github.com/yannickl/SnappingStepper.git'
s.social_media_url = 'https://twitter.com/yannickloriot'
s.authors = { 'Yannick Loriot' => 'contact@yannickloriot.com' }
s.source = { :git => 'https://github.com/yannickl/SnappingStepper.git', :tag => s.version }
s.screenshot = 'http://yannickloriot.com/resources/snappingstepper-screenshot.png'
s.swift_version = '5.0'
s.ios.deployment_target = '14.1'
s.dependency 'DynamicColor', '~> 5.0.0'
s.framework = 'UIKit'
s.source_files = 'Sources/*.swift'
s.requires_arc = true
end