From ed9b188f06dfbe00db2e0cb196cee3b84343e8c1 Mon Sep 17 00:00:00 2001 From: Mathias Koehnke Date: Fri, 13 Nov 2015 21:55:19 +0100 Subject: [PATCH] Added podspec --- LongPressRecordButton.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 LongPressRecordButton.podspec diff --git a/LongPressRecordButton.podspec b/LongPressRecordButton.podspec new file mode 100644 index 0000000..9063e92 --- /dev/null +++ b/LongPressRecordButton.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + + s.name = "LongPressRecordButton" + s.version = "1.0.1" + s.summary = "Simple and easy-to-use record button for iOS, that enforces a long press, similar to Instagram" + + s.description = <<-DESC + Simple and easy-to-use record button for iOS, that enforces a long press (and shows a tooltip when short-pressed) + similar to the Instagram app. + DESC + + s.homepage = "https://github.com/mkoehnke/LongPressRecordButton" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + + s.author = "Mathias Köhnke" + + s.platform = :ios, "9.0" + + s.source = { :git => "https://github.com/mkoehnke/LongPressRecordButton.git", :tag => s.version.to_s } + + s.source_files = "LongPressRecordButton", "LongPressRecordButton/**/*.{swift}" + s.exclude_files = "Classes/Exclude" + + s.requires_arc = true + +end