forked from tozny/e3db-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathE3db.podspec
28 lines (23 loc) · 1.06 KB
/
E3db.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
Pod::Spec.new do |s|
s.name = 'E3db'
s.version = '2.0.0'
s.summary = 'Super Easy End-to-End Encryption'
s.description = <<-DESC
The Tozny End-to-End Encrypted Database (E3DB) is a storage platform with powerful sharing and consent management features.
E3DB provides a familiar JSON-based NoSQL-style API for reading, writing, and querying data stored securely in the cloud.
DESC
s.homepage = 'https://tozny.com/'
s.license = { :type => 'TOZNY NON-COMMERCIAL LICENSE', :file => 'LICENSE.md' }
s.author = { 'Tozny' => '[email protected]' }
s.source = { :git => 'https://github.com/tozny/e3db-swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/@tozny'
s.ios.deployment_target = '9.0'
s.source_files = 'E3db/Classes/**/*'
s.subspec 'Core' do |core|
core.dependency 'Swish', '~> 3.0'
core.dependency 'Sodium', '~> 0.6'
core.dependency 'Valet', '~> 3.1'
core.dependency 'Heimdallr', '~> 3.6'
end
s.default_subspec = 'Core'
end