forked from alberdev/EmptyStateKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmptyStateKit.podspec
52 lines (32 loc) · 3.26 KB
/
EmptyStateKit.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Be sure to run `pod lib lint EmptyStateKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = '9.0'
s.name = 'EmptyStateKit'
s.summary = 'Beautiful, animated & fully customizable empty state view. A great way to engage and keep users whenever the view has no content to display.'
s.description = 'Empty states are actually a great way to engage, keep and delight users at critical moments. Use `EmptyStateKit` to make your app even more interesting and add a bit of fun to the UI interactions whenever the view has no content to display. Display awesome placeholder empty state in any UIView or UITableView/UICollectionView with refresh content features. It is super-useful to speed up a mobile development workflow due to its flexibility and ease of use.'
s.version = '1.0.7'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { 'Alberto Aznar' => '[email protected]' }
s.homepage = 'https://github.com/alberdev/EmptyStateKit'
s.social_media_url = 'https://twitter.com/alberdev'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/alberdev/EmptyStateKit.git', :tag => s.version.to_s }
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = 'UIKit'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'EmptyStateKit/**/*.{swift}'
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.resources = 'EmptyStateKit/**/Resources/*.xib'
# ――― Swift Version ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = '5.0'
end