forked from Abdul-Moiz/AMProgressBar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAMProgressBar.podspec
24 lines (20 loc) · 909 Bytes
/
AMProgressBar.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
Pod::Spec.new do |s|
s.name = 'AMProgressBar'
s.version = '0.1.2'
s.summary = 'Elegant progress bar for your iOS app written in Swift.'
s.homepage = 'https://github.com/Abdul-Moiz/AMProgressBar'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Abdul Moiz' => '[email protected]' }
s.source = { :git => 'https://github.com/Abdul-Moiz/AMProgressBar.git', :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.swift_versions = '5'
s.description = <<-DESC
Elegant progress bar for your iOS app written in Swift.
Features
* Up-to-date: Swift 5
* Super easy to use and lightweight
* `IBInspectable` properties can be customized from `Interface Builder`
* Global config file to apply same style across app.
DESC
s.source_files = 'AMProgressBar/Classes/**/*'
end