-
Notifications
You must be signed in to change notification settings - Fork 10
/
ProgressMeter.podspec
26 lines (22 loc) · 1.37 KB
/
ProgressMeter.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
Pod::Spec.new do |s|
s.name = 'ProgressMeter'
s.version = '0.1.6'
s.summary = 'Measuring the progress is not a problem anymore 😎'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Displaying the progress in a meter control. `ProgressMeter` lets you create your custom annotations that display either on top or bottom of meter. So, it's not just an ordinary progress bar, it gives the better visual. 💯
Don't have data? No problem, ProgressMeter comes with it's own data set. 🔢
DESC
s.homepage = 'https://github.com/khawajafarooq/ProgressMeter'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'khawajafarooq' => 'kfarooqa@gmail.com' }
s.source = { :git => 'https://github.com/khawajafarooq/ProgressMeter.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/khfarooq'
s.ios.deployment_target = '9.0'
s.source_files = 'ProgressMeter/Classes/**/*.swift'
end