-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOCircleProgressView.podspec
29 lines (24 loc) · 1.27 KB
/
BOCircleProgressView.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
29
#
# Be sure to run `pod lib lint BOCircleProgressView.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'BOCircleProgressView'
s.version = '1.0.0'
s.summary = 'A circular progress indicator.'
s.description = <<-DESC
BOCircleProgressView is used to display completion percentage in a circular (ring-like) component.
You can change the color, size and with of the circular progress indicator and initialize it either from Storyboard or from the code.
DESC
s.homepage = 'https://github.com/jelenakrmar/circle-progress-view'
s.screenshots = 'https://raw.githubusercontent.com/jelenakrmar/circle-progress-view/master/Screenshot.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jelenakrmar' => 'https://github.com/jelenakrmar' }
s.source = { :git => 'https://github.com/jelenakrmar/circle-progress-view.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'BOCircleProgressView/Classes/*'
s.swift_version = "4.0"
end