-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLoadable.podspec
26 lines (24 loc) · 1.03 KB
/
Loadable.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
#
# Be sure to run `pod lib lint Loadable.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|
s.name = 'Loadable'
s.version = '1.0.0'
s.summary = 'Make any UIView a UIProgressView'
s.description = <<-DESC
Now you can make any UIView or subclass into a UIProgressView and show progress wherever you like
DESC
s.homepage = 'https://github.com/mapierce/Loadable'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Matthew Pierce' => '[email protected]' }
s.source = { :git => 'https://github.com/mapierce/Loadable.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/PierceMatthew'
s.ios.deployment_target = '11.0'
s.source_files = 'Loadable/Classes/**/*'
s.swift_version = '5.0'
s.frameworks = 'UIKit'
end