-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Prephirences.podspec
67 lines (52 loc) · 2.93 KB
/
Prephirences.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "Prephirences"
s.version = "5.1.0"
s.summary = "A Swift library to manage preferences"
s.description = <<-DESC
Prephirences is a Swift library that provides useful protocols and methods to manage preferences.
Preferences could be user preferences (NSUserDefaults) or your own private application preferences
DESC
s.homepage = "https://github.com/phimage/Prephirences"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "phimage" => "eric.marchand.n7@gmail.com" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '10.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/phimage/Prephirences.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspecs = 'Core', 'Keys'
s.subspec "Core" do |sp|
sp.source_files = "Sources/*.swift"
end
s.subspec "CoreData" do |sp|
sp.source_files = ['Sources/CoreData/*.swift']
sp.dependency 'Prephirences/Core'
end
s.subspec "UserDefaults" do |sp|
sp.source_files = ['Sources/UserDefaults/*.swift']
sp.dependency 'Prephirences/Core'
end
s.subspec "Keys" do |sp|
sp.source_files = ['Sources/Keys/*.swift']
sp.dependency 'Prephirences/Core'
end
s.subspec "RawRepresentableKey" do |sp|
sp.source_files = ['Sources/RawRepresentableKey/*.swift']
sp.dependency 'Prephirences/Core'
end
s.subspec "All" do |sp|
sp.dependency 'Prephirences/CoreData'
sp.dependency 'Prephirences/UserDefaults'
sp.dependency 'Prephirences/Keys'
end
s.subspec "Cocoa" do |sp|
sp.platform = :osx, '10.10'
sp.osx.source_files = ['Xcodes/Mac/*.swift']
end
end