forked from asam139/Steps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSteps.podspec
More file actions
24 lines (20 loc) · 1.08 KB
/
Steps.podspec
File metadata and controls
24 lines (20 loc) · 1.08 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
Pod::Spec.new do |s|
s.name = 'Steps'
s.version = '0.3.7'
s.summary = 'Steps is a navigation bar that guides users through the steps of a task.'
s.description = <<-DESC
Steps is a navigation bar that guides users through the steps of a task. You need to use it when a given task is complicated or has a certain sequence in the series of subtasks, we can decompose it into several steps to make things easier.
DESC
s.homepage = 'https://github.com/asam139/Steps'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'asam139' => '93sauu@gmail.com' }
s.screenshot = 'https://raw.githubusercontent.com/asam139/Steps/master/Assets/logo.png'
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '14.0'
s.swift_version = '5.1'
s.source = { :git => 'https://github.com/asam139/Steps.git', :tag => s.version.to_s }
s.source_files = 'Sources/Steps/**/*'
s.frameworks = 'SwiftUI', 'Combine'
s.dependency 'SwifterSwiftUI', '~> 0.5.0'
end