-
Notifications
You must be signed in to change notification settings - Fork 0
/
LFSAskForReview.podspec
21 lines (20 loc) · 1.26 KB
/
LFSAskForReview.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "LFSAskForReview"
s.version = "0.0.3"
s.summary = "An iOS class to add a customizable ask for review service."
s.homepage = "https://github.com/LFSAskForReview"
s.screenshots = "https://i.cloudup.com/gwQpHAlp2E.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Lluís Gómez" => "[email protected]" }
s.platform = :ios
s.source = { :git => "https://github.com/lafosca/LFSAskForReview.git", :tag => "0.0.3" }
s.source_files = '*.{h,m}'
s.requires_arc = true
s.dependency 'UIAlertView+Blocks', '~> 0.7'
s.description = <<-DESC
LFSAskForReview is a class that you can add to your iOS app in order to ask the user to review it. Its main features are that it doesn't ask the user to review the app more than once per version and that it's fully customizable, you can:
- decide which actions and how many repetitions are needed before displaying the alert (datasource protocol)
- set the title, message and button titles of the alert (datasource protocol)
- implement the response to both the positive and the negative answer of the user (delegate protocol)
DESC
end