-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathASProgressHud.podspec
More file actions
23 lines (19 loc) · 867 Bytes
/
ASProgressHud.podspec
File metadata and controls
23 lines (19 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ASProgressHud"
s.version = "1.0.7"
s.summary = "A custom loading view inspired by MBProgressHud"
s.description = <<-DESC
A custom loading view inspired by MBProgressHud.
DESC
s.homepage = "https://github.com/andr3a88/ASProgressHud"
s.license = 'MIT'
s.author = { "Andrea" => "runner_corsa@msn.com" }
s.source = { :git => "https://github.com/andr3a88/ASProgressHud.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/andrea_steva'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundle = {
'Resources' => ['Pod/Assets/**/*.png'] # the ** will recursively check all subfolders of the Assets directory
}
end