forked from wisemen-digital/StatefulUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatefulUI.podspec
More file actions
36 lines (33 loc) · 864 Bytes
/
Copy pathStatefulUI.podspec
File metadata and controls
36 lines (33 loc) · 864 Bytes
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
Pod::Spec.new do |s|
# info
s.name = 'StatefulUI'
s.version = '1.0.4'
s.summary = 'Placeholder views based on content, loading, error or empty states.'
s.description = <<-DESC
A protocol that presents placeholder views based on content, loading, error or empty states.
Fork of StatefulViewController.
DESC
s.homepage = 'https://github.com/appwise-labs/StatefulUI'
s.authors = {
'David Jennes' => 'david.jennes@gmail.com'
}
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
# configuration
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
# files
s.source = {
:git => 'https://github.com/appwise-labs/StatefulUI.git',
:tag => s.version
}
s.source_files = 'Sources/**/*.swift'
s.resource_bundles = {
'StatefulUIResources' => ['Resources/**/*']
}
# dependencies
s.dependency 'IBAnimatable'
s.dependency 'Reusable'
end