-
Notifications
You must be signed in to change notification settings - Fork 0
/
UStack.podspec
30 lines (20 loc) · 967 Bytes
/
UStack.podspec
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
Pod::Spec.new do |s|
s.name = "UStack"
s.version = "2.3.2"
s.summary = "A tool for use viewbuilder like syntx in UIKit and AppKit."
s.description = <<-DESC
This repo use @resultBuilder to implement HStack, VStack in UIKit and AppKit,
with which you can have a better experience when building views in UIKit and AppKit.
DESC
s.homepage = "https://github.com/foxsin10/UStack"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "foxsion10" => "yzjcnn@gmail.com" }
s.social_media_url = "https://github.com/foxsin10"
s.swift_versions = ['5.4']
s.ios.deployment_target = "11.0"
s.tvos.deployment_target = "13.0"
s.osx.deployment_target = "10.12"
s.source = { :git => "https://github.com/foxsin10/UStack.git", :tag => s.version }
s.source_files = ["Sources/**/*.swift"]
s.requires_arc = true
end