-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathLinearProgressBar.podspec
25 lines (20 loc) · 993 Bytes
/
LinearProgressBar.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
Pod::Spec.new do |s|
s.name = "LinearProgressBar"
s.version = "1.0.2"
s.summary = "LinearProgressBar is a simple progress bar control for iOS."
s.description = <<-DESC
# LinearProgressBar
# LinearProgressBar is a simple progress bar control for iOS.
# What it does?
# It can be used for tracking progress such as timing applications, progress indicators and more.
# Just pod and start using the library
DESC
s.homepage = "https://github.com/gordoneliel/LinearProgressBar"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Eliel Gordon" => "[email protected]" }
s.source = { :git => "https://github.com/gordoneliel/LinearProgressBar.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/1gordoneliel'
s.platform = :ios, '10.0'
s.requires_arc = true
s.source_files = 'LinearProgressBar/**/*.{swift}'
end