-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathProgress.podspec
More file actions
25 lines (22 loc) · 1.28 KB
/
Progress.podspec
File metadata and controls
25 lines (22 loc) · 1.28 KB
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
#
# Be sure to run `pod lib lint Progress.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Progress'
s.version = '3.0'
s.summary = 'A iOS progress indicator management tool'
s.swift_version = '4.2'
s.description = <<-DESC
Apart from any kinds of ProgresHUDs that capture the whole screen and lock the user interaction, Progress provides a more precise and elegant progress indicator. Progress allows you to add any number/kinds of progressor views into each view with only one line of code. The progress indicator can be an arbitrary combination of built-in/custom progressors. Progress helps you provide a fluent user experience in your iOS application.
DESC
s.homepage = 'https://github.com/popodidi/Progress'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'popodidi' => 'changhao@haostudio.cc' }
s.source = { :git => 'https://github.com/popodidi/Progress.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Progress/Classes/**/*'
end