-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMCNotificationCenter.podspec
More file actions
38 lines (19 loc) · 1.81 KB
/
MCNotificationCenter.podspec
File metadata and controls
38 lines (19 loc) · 1.81 KB
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
33
34
35
36
37
38
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MCNotificationCenter"
s.version = "1.0.0"
s.summary = "NSNotificationCenter and KVO manager for iOS."
s.homepage = "https://github.com/maxcampolo/MCNotificationCenter"
s.license = 'MIT'
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Max Campolo" => "https://github.com/maxcampolo" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#s.platform = :ios
s.platform = :ios, "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/maxcampolo/MCNotificationCenter.git", :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "MCNotificationCenter/Source/*.swift"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end