forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added podspec for AMRatingControl 1.2.0
- Loading branch information
amseddi
committed
Apr 22, 2013
1 parent
71b7d66
commit cd26178
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "AMRatingControl" | ||
s.version = "1.2.0" | ||
s.summary = "A simple rating control for the iPhone." | ||
s.description = <<-DESC | ||
AMRatingControl is a UI control that resembles the 'star rating' control seen in the iPod app. | ||
AMRatingControl allows you to select a rating starting from 0 to any number of stars you want. | ||
You can use default star symbols and customize colors or specify custom images. | ||
DESC | ||
s.homepage = "https://github.com/amseddi/AMRatingControl" | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
|
||
s.author = "amseddi" | ||
s.source = { :git => "https://github.com/amseddi/AMRatingControl.git", :tag => "1.2.0" } | ||
|
||
s.platform = :ios, '5.0' | ||
|
||
s.source_files = 'Classes' | ||
|
||
s.resources = "star.png", "dot.png" | ||
|
||
s.requires_arc = true | ||
end |