-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAppRating.podspec
23 lines (22 loc) · 1019 Bytes
/
AppRating.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "AppRating"
spec.version = "1.5.0"
spec.swift_version = "5.0"
spec.summary = "A simple yet powerful App Review Manager for iOS in Swift 5.0. Now supporting SKStoreReviewController API. Based on ArmChair."
spec.description = <<-DESC
A simple yet powerful App Review Manager for iOS and OSX in Swift.
* 100% Swift 5
* First and only App Rating Library that supports SKStoreReviewController
* Fully Configurable at Runtime
* Default Localizations for Dozens of Languages
* Easy to Setup
DESC
spec.homepage = "https://github.com/grizzly/AppRating"
spec.license = { type: 'MIT', file: 'LICENSE' }
spec.authors = { "Grizzly" => 'st.mayr@grizzlynt.com' }
spec.platform = :ios, "10.3"
spec.requires_arc = true
spec.source = { git: "https://github.com/grizzly/AppRating.git", tag: "#{spec.version}", submodules: true }
spec.source_files = "Sources/**/*.{h,swift}"
spec.ios.resource_bundle = { 'AppRating' => ['Localization/*.lproj'] }
end