-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPMParentalGate.podspec
More file actions
26 lines (22 loc) · 1002 Bytes
/
Copy pathPMParentalGate.podspec
File metadata and controls
26 lines (22 loc) · 1002 Bytes
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 = "PMParentalGate"
s.version = "1.1"
s.summary = "A drop-in class for iOS applications that allow to add a parental-gate to the app"
s.description = <<-DESC
SimpleAudioPlayer
=================
An example use of the gate to restrict the In-App purchase:
[[PMParentalGateQuestion sharedGate] presentGateWithText:nil timeout:10 finishedBlock:^(BOOL allowPass, GateResult result) {
if (allowPass) {
[[InAppPurchaseHelper sharedInstance] buyProductWithId:@"fullpro"];
}
}];
DESC
s.homepage = "https://github.com/owlcoding/PMParentalGate"
s.license = "Apache License"
s.author = { "Pawel 'Kender' Maczewski" => "kender@codingslut.com" }
s.source = { :git => "https://github.com/owlcoding/PMParentalGate.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Classes/*'
end