-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
SkeletonUI.podspec
19 lines (19 loc) · 999 Bytes
/
SkeletonUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'SkeletonUI'
s.version = '2.0.2'
s.summary = 'Elegant skeleton loading animation in SwiftUI and Combine'
s.description = <<-DESC
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and start using skeletons to represent final content shapes
DESC
s.homepage = 'https://github.com/CSolanaM/SkeletonUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'CSolanaM' => 'carlos.solana.martinez@gmail.com' }
s.source = { :git => 'https://github.com/CSolanaM/SkeletonUI.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/CSolanaM'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.macos.deployment_target = '10.15'
s.swift_version = '5.0'
s.source_files = 'Sources/SkeletonUI/**/*'
end