forked from ask-fm/AFMInfoBanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AFMInfoBanner.podspec
25 lines (22 loc) · 1.19 KB
/
AFMInfoBanner.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
Pod::Spec.new do |s|
s.name = "AFMInfoBanner"
s.version = "1.0.2"
s.summary = "Easy to use auto-hiding notice bar below Navigation Bar."
s.description = <<-DESC
Red or green banner with text sliding from below the Navigation Bar
and hiding itself after a small timeout.
Good for notices or error messages. Auto-sizes itself to fit all
text. Colours are customisable by UIAppearance.
DESC
s.homepage = "https://github.com/ask-fm/AFMInfoBanner"
s.screenshots = "https://raw.githubusercontent.com/ask-fm/AFMInfoBanner/master/res/red_banner.gif", "https://raw.githubusercontent.com/ask-fm/AFMInfoBanner/master/res/red_banner.png"
s.license = 'MIT'
s.author = { "Romans Karpelcevs" => "[email protected]" }
s.source = { :git => "https://github.com/ask-fm/AFMInfoBanner.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/cvbk'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.frameworks = 'UIKit'
s.dependency 'CVKHierarchySearcher', '~> 0.2'
end