forked from sanghavan/GRKBarGraphView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGRKBarGraphView.podspec
More file actions
19 lines (19 loc) · 963 Bytes
/
GRKBarGraphView.podspec
File metadata and controls
19 lines (19 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "GRKBarGraphView"
s.version = "1.1.2"
s.summary = "Renders a one-item bar graph with an animatable percentage property and configurable orientation, colors, etc."
s.description = <<-DESC
A UIView subclass which renders a one-item bar graph with an animatable percentage
property and configurable orientation, colors, etc. CALayers are used for drawing
efficiency and implicit animation.
DESC
s.homepage = "https://github.com/levigroker/GRKBarGraphView"
s.license = 'Creative Commons Attribution 3.0 Unported License'
s.author = { "Levi Brown" => "levigroker@gmail.com" }
s.social_media_url = 'https://twitter.com/levigroker'
s.source = { :git => "https://github.com/levigroker/GRKBarGraphView.git", :tag => s.version.to_s }
s.platform = :ios, '7.1'
s.ios.deployment_target = '7.0'
s.source_files = 'GRKBarGraphView/**/*.{h,m}'
s.requires_arc = true
end