From 0c22577c5f3cda2464b5461937372003dc539a1a Mon Sep 17 00:00:00 2001 From: Cezary Wojcik Date: Thu, 19 Sep 2013 13:40:19 -0700 Subject: [PATCH] 1.0.0 --- CWStatusBarNotification.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CWStatusBarNotification.podspec diff --git a/CWStatusBarNotification.podspec b/CWStatusBarNotification.podspec new file mode 100644 index 0000000..1562da5 --- /dev/null +++ b/CWStatusBarNotification.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "CWStatusBarNotification" + s.version = "1.0.0" + s.summary = "A category on UIViewController to show a text notification in the status bar." + s.description = "CWStatusBarNotification adds a category on UIViewController that allows you to present a text-based notification in the status bar." + s.homepage = "http://github.com/cezarywojcik/CWStatusBarNotification" + s.screenshots = "https://raw.github.com/cezarywojcik/CWStatusBarNotification/master/screenshot.png" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Cezary Wojcik" => "cezarywojcik@cezarywojcik.com" } + s.platform = :ios, '6.0' + s.source = { :git => "https://github.com/cezarywojcik/CWStatusBarNotification.git", + :tag => s.version.to_s } + s.source_files = 'CWStatusBarNotification' + s.requires_arc = true +end