-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLoadmation.podspec
More file actions
42 lines (20 loc) · 803 Bytes
/
Copy pathLoadmation.podspec
File metadata and controls
42 lines (20 loc) · 803 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
37
38
39
40
41
42
Pod::Spec.new do |s|
s.name = "Loadmation"
s.version = "0.0.9"
s.summary = "Simple Loading Animation"
s.description = <<-DESC
Add a loading animation to your project easily.
DESC
s.homepage = "https://github.com/saqibomer/Loadmation"
s.screenshots = "https://raw.githubusercontent.com/saqibomer/Loadmation/master/sc.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Saqib" => "saqibomer.cs@gmail.com" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/saqibomer/Loadmation.git", :tag => s.version }
s.source_files = "Src/**/*.{swift}"
s.resource_bundles = {
'Loadmation' => [
'Src/Assets/**/*.png'
]
}
end