-
Notifications
You must be signed in to change notification settings - Fork 1
/
UIRating.podspec
25 lines (19 loc) · 983 Bytes
/
UIRating.podspec
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
Pod::Spec.new do |spec|
spec.name = "UIRating"
spec.version = "1.0.1"
spec.summary = "A customizable rating view for iOS."
spec.description = <<-DESC
An easy to use, stylish, slidable and highly customizable rating view.
Not a fan of stars? customize it with any icons you want!
0 out of 5 ratings? how about 0 out of 100?! (if the screen size supports it that is.)
DESC
spec.homepage = "https://github.com/shadow-of-arman/UIRating"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Arman" => "[email protected]" }
spec.social_media_url = "https://www.instagram.com/shadowofarman/"
spec.platform = :ios, "11.0"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/shadow-of-arman/UIRating.git", :tag => "#{spec.version}" }
spec.source_files = "Classes", "UIRating/**/*.{h,m,swift}"
spec.resources = "UIRating/**/*.xcassets"
end