-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathStepperView.podspec
More file actions
34 lines (32 loc) · 1.34 KB
/
StepperView.podspec
File metadata and controls
34 lines (32 loc) · 1.34 KB
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
27
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint StepperView.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'StepperView'
s.version = '2.0'
s.swift_version = '5.9'
s.summary = 'SwiftUI iOS component for Step Indications.'
s.description = 'Stepper View Indication componet for SwiftUI'
s.homepage = 'https://github.com/badrinathvm/StepperView'
s.author = 'Badarinath Venkatnarayansetty'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/badrinathvm/StepperView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/badrivm'
s.ios.deployment_target = '13.0'
s.watchos.deployment_target = '7.0'
s.macos.deployment_target = '10.15'
s.source_files = 'Sources/**/*.swift'
# Yams + YAML resources only on iOS and macOS (not supported on watchOS)
s.ios.dependency 'Yams', '~> 5.0'
s.macos.dependency 'Yams', '~> 5.0'
s.ios.resource_bundles = {
'StepperView' => ['Sources/StepperView/Resources/**/*.yaml']
}
s.macos.resource_bundles = {
'StepperView' => ['Sources/StepperView/Resources/**/*.yaml']
}
end