-
Notifications
You must be signed in to change notification settings - Fork 368
/
Cosmos.podspec
26 lines (24 loc) · 1.45 KB
/
Cosmos.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
26
Pod::Spec.new do |s|
s.name = "Cosmos"
s.version = "25.0.1"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/evgenyneu/Cosmos"
s.summary = "5-star rating control written in Swift"
s.description = <<-DESC
This is a UI control for iOS and tvOS that shows a 5-star rating or takes rating input from the user. Cosmos is a subclass of a UIView. Let your users see and post beautiful 3-star reviews!
* Shows star rating with an optional text label.
* Can be used as a rating input control (iOS only).
* Cosmos view can be customized in the Storyboard without writing code.
* Includes different star filling modes: full, half-filled and precise.
* Cosmos is accessible and works with voice-over.
* Supports right-to-left languages.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "[email protected]" }
s.source = { :git => "https://github.com/evgenyneu/Cosmos.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/evgenyneu/Cosmos/master/graphics/Screenshots/cosmos_star_rating_control_for_ios_swift_space.png"
s.source_files = "Cosmos/**/*.swift"
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.swift_versions = ['4.2', '5.0']
s.resource_bundles = {"Cosmos" => ["Cosmos/Resources/PrivacyInfo.xcprivacy"]}
end