13 lines
503 B
Ruby
13 lines
503 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "DLStarRating"
|
|
s.version = "1.1"
|
|
s.summary = "iOS star rating component."
|
|
s.homepage = "https://github.com/dlinsin/DLStarRating"
|
|
s.license = 'Eclipse Public License'
|
|
s.author = { "David Linsin" => "dlinsin@gmail.com" }
|
|
s.source = { :git => "https://github.com/dlinsin/DLStarRating.git", :tag => '1.1' }
|
|
s.platform = :ios
|
|
s.source_files = 'DLStarRating/*.{h,m}'
|
|
s.resource = "DLStarRating/images/*.png"
|
|
end
|