-
Notifications
You must be signed in to change notification settings - Fork 40
/
GTProgressBar.podspec
28 lines (23 loc) · 1.25 KB
/
GTProgressBar.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
27
28
Pod::Spec.new do |s|
s.name = 'GTProgressBar'
s.version = '0.3.3'
s.summary = 'GTProgressBar is a customisable progress bar written in Swift 5'
# 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
GTProgressBar is a customisable progress bar written in Swift 5. It supports both vertical and horizontal orientation.
DESC
s.homepage = 'https://github.com/gregttn/GTProgressBar'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'gregttn' => 'gregttn@gmail.com' }
s.source = { :git => 'https://github.com/gregttn/GTProgressBar.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/gregttn'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '10.0'
s.source_files = 'GTProgressBar/Classes/**/*'
s.swift_version = '5.0'
end