-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDJWStarRatingView.podspec
More file actions
33 lines (22 loc) · 1.31 KB
/
DJWStarRatingView.podspec
File metadata and controls
33 lines (22 loc) · 1.31 KB
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
30
31
32
33
Pod::Spec.new do |s|
s.name = "DJWStarRatingView"
s.version = "0.0.4"
s.summary = "A view that represents a given rating using stars. Uses custom drawing to allow their appearance at any size."
s.description = <<-DESC
A view that represents a given rating using stars. Uses custom drawing to allow their appearance at any size.
The view also allows for editing, using either tapping, panning, or both.
Properties that are configurable include star size, fill color, unfilled color, stroke, padding and stroke width.
DESC
s.homepage = "https://github.com/danwilliams64/DJWStarRatingView"
s.screenshots = "https://raw.githubusercontent.com/danwilliams64/DJWStarRatingView/master/Screenshots/DJWStarRatingView.gif"
s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Dan Williams" => "dan@danwilliams.co" }
s.social_media_url = "http://twitter.com/danielwilliams"
s.platform = :ios
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/danwilliams64/DJWStarRatingView.git", :tag => "#{s.version}" }
s.source_files = "DJWStarRatingView"
s.public_header_files = "DJWStarRatingView/*.h"
s.requires_arc = true
end