forked from taruntyagi697/RateView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRateView.podspec
More file actions
30 lines (17 loc) · 950 Bytes
/
RateView.podspec
File metadata and controls
30 lines (17 loc) · 950 Bytes
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
Pod::Spec.new do |s|
s.name = "RateView"
s.version = "1.2"
s.summary = "RateView for iOS Objective-C is a subclass of UIView."
s.description = "RateView is a UIView subclass that creates a customizable rating view containing rating stars in it.
It fills out the stars in percentage fill manner. It can be used for -
* displaying a rating for an item canRate = NO OR
* actually provide user a chance to rate any product or item canRate = YES."
s.homepage = "https://github.com/taruntyagi697/RateView"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Tarun Tyagi" => "taruntyagi697@gmail.com" }
s.platform = :ios
s.ios.deployment_target = "6.0"
s.source = { :git => "https://github.com/taruntyagi697/RateView.git", :tag => "v1.2" }
s.source_files = "RateView"
s.requires_arc = true
end