-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f09103f
commit 0c22577
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |