-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInformative.podspec
32 lines (20 loc) · 1009 Bytes
/
Informative.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
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "Informative"
s.version = "0.0.2"
s.summary = "iOS library for creating an information view positioned below the status bar"
s.description = <<-DESC
iOS library for creating an information view positioned below the status bar, similar to the inbuilt iOS in-call status bar.
Compatible with iOS 6/7.
DESC
s.homepage = "https://github.com/davidlawson/Informative"
s.screenshots = "https://github.com/davidlawson/Informative/raw/master/informative.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "David Lawson" => "[email protected]" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/davidlawson/Informative.git", :tag => "0.0.2" }
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
s.dependency "Masonry"
s.dependency "JRSwizzle"
end