forked from MarioIannotta/LoadingPlaceholderView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoadingPlaceholderView.podspec
More file actions
17 lines (16 loc) · 916 Bytes
/
LoadingPlaceholderView.podspec
File metadata and controls
17 lines (16 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'LoadingPlaceholderView'
s.version = '0.0.2'
s.summary = 'Non-blocking animated gradient placeholder view for your async tasks.'
s.description = <<-DESC
LoadingPlaceholderView allows you to display an animated gradient placeholder for all of your view' subviews with just a couple of line of codes.
DESC
s.swift_version = '4.0'
s.homepage = 'https://github.com/MarioIannotta/LoadingPlaceholderView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'MarioIannotta' => 'info@marioiannotta.com' }
s.source = { :git => 'https://github.com/MarioIannotta/LoadingPlaceholderView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/MarioIannotta'
s.ios.deployment_target = '9.0'
s.source_files = 'LoadingPlaceholderView/**/*.swift'
end