forked from owlcoding/PMAudioRecorderViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PMAudioRecorderViewController.podspec
29 lines (26 loc) · 1.16 KB
/
PMAudioRecorderViewController.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
27
28
29
Pod::Spec.new do |s|
s.name = "PMAudioRecorderViewController"
s.version = "0.6"
s.summary = "Drop-in class to record audio note in iOS application and get it back in the app"
s.description = <<-DESC
PMAudioRecorderViewController
=============================
#import "AudioRecorderViewController"
...
[AudioNoteRecorderViewController showRecorderMasterViewController:self withFinishedBlock:^(BOOL wasRecordingTaken, NSURL *recordingURL) {
if (wasRecordingTaken) {
// do whatever you want with that URL to the .caf file
}
}];
DESC
s.homepage = "https://github.com/owlcoding/PMAudioRecorderViewController"
s.license = "Apache License"
s.author = { "Pawel 'Kender' Maczewski" => "[email protected]" }
s.source = { :git => "https://github.com/owlcoding/PMAudioRecorderViewController.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.frameworks = 'AVFoundation'
s.source_files = 'AudioNoteRecorderViewController/Classes/*'
s.resources = 'AudioNoteRecorderViewController/Images/*'
s.dependency 'UIImage+BlurredFrame'
end