-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathSeedStackViewController.podspec
More file actions
18 lines (18 loc) · 724 Bytes
/
SeedStackViewController.podspec
File metadata and controls
18 lines (18 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SeedStackViewController"
s.module_name = "StackViewController"
s.version = "0.6.0"
s.summary = "Simplifies the process of building forms and other static content using UIStackView."
s.description = "StackViewController is a Swift framework that simplifies the process of building forms and other static content using UIStackView."
s.homepage = "https://github.com/seedco/StackViewController"
s.license = "MIT"
s.author = "Seed"
s.source = {
git: "https://github.com/seedco/StackViewController.git",
tag: s.version.to_s
}
s.ios.deployment_target = "12.0"
s.source_files = "StackViewController/*.{h,swift}"
s.frameworks = "UIKit"
s.swift_versions = "5.0"
end