From 054b995ba493d8bfc9358c8e20507b76a1694e11 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Wed, 19 Feb 2014 14:26:43 -0500 Subject: [PATCH] Added JPSVolumeButtonHandler --- .../0.0.1/JPSVolumeButtonHandler.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 JPSVolumeButtonHandler/0.0.1/JPSVolumeButtonHandler.podspec diff --git a/JPSVolumeButtonHandler/0.0.1/JPSVolumeButtonHandler.podspec b/JPSVolumeButtonHandler/0.0.1/JPSVolumeButtonHandler.podspec new file mode 100644 index 000000000000000..357ba2c2dc34b3c --- /dev/null +++ b/JPSVolumeButtonHandler/0.0.1/JPSVolumeButtonHandler.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'JPSVolumeButtonHandler' + s.version = '0.0.1' + s.platform = :ios, "7.0" + s.license = 'MIT' + s.summary = 'JPSVolumeButtonHandler provides an easy block interface to hardware volume buttons on iOS devices. Perfect for camera apps!' + s.homepage = 'https://github.com/jpsim/JPSVolumeButtonHandler' + s.author = { 'JP Simard' => 'jp@jpsim.com' } + s.source = { :git => 'https://github.com/jpsim/JPSVolumeButtonHandler.git', :tag => s.version.to_s } + + s.description = 'JPSVolumeButtonHandler provides an easy block interface to hardware volume buttons on iOS devices. Perfect for camera apps! Features:\n* Run blocks whenever a hardware volume button is pressed\n* Volume button presses don\'t affect system audio\n* Hide the HUD typically displayed on volume button presses\n* Works even when the system audio level is at its maximum or minimum, even when muted' + + s.source_files = 'JPSVolumeButtonHandler/*.{h,m}' + s.framework = 'MediaPlayer', 'AVFoundation' + s.requires_arc = true +end