forked from mattdanielbrown/Vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVault1.podspec
More file actions
executable file
·31 lines (24 loc) · 924 Bytes
/
Vault1.podspec
File metadata and controls
executable file
·31 lines (24 loc) · 924 Bytes
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
Pod::Spec.new do |s|
s.name = "Vault1"
s.version = "1.1.4"
s.summary = "Safe place for your encryption keys."
s.homepage = "https://github.com/passlock/Vault"
s.license = "MIT"
s.author = "Passlock, Inc"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/passlock/Vault.git", :tag => "#{s.version}" }
s.default_subspec = 'Protobuf'
s.subspec 'Core' do |ss|
ss.source_files = ["Sources/Vault1.swift", "Sources/Serializers/Serializer.swift", "Sources/Internal/UUID.swift"]
ss.dependency 'Crypto'
end
s.subspec 'Protobuf' do |ss|
ss.source_files = ['Sources/Serializers/Protobuf/**/*.{swift}']
ss.dependency 'Vault1/Core'
ss.dependency 'SwiftProtobuf'
end
s.subspec 'Json' do |ss|
ss.source_files = ['Sources/Serializers/Json/**/*.{swift}']
ss.dependency 'Vault1/Core'
end
end