forked from tesseract-one/Tesseract.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTesseractSDK.podspec
56 lines (41 loc) · 1.72 KB
/
TesseractSDK.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
Pod::Spec.new do |s|
s.name = 'TesseractSDK'
s.version = '0.1.2'
s.summary = 'Tesseract DApp Platform SDK for iOS and OSX'
s.description = <<-DESC
Tesseract DApp Platform SDK for iOS and OSX. Entry point for all APIs.
DESC
s.homepage = 'https://github.com/tesseract-one/Tesseract.swift'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Tesseract Systems, Inc.' => '[email protected]' }
s.source = { :git => 'https://github.com/tesseract-one/Tesseract.swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tesseract_one'
s.ios.deployment_target = '10.0'
s.module_name = 'Tesseract'
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/Tesseract/Core/**/*.swift'
ss.dependency 'Tesseract.OpenWallet/Client', '~> 0.1'
end
s.subspec 'Ethereum.Core' do |ss|
ss.source_files = 'Sources/Tesseract/Ethereum/Core/**/*.swift'
ss.dependency 'TesseractSDK/Core'
ss.dependency 'Tesseract.OpenWallet/Ethereum', '~> 0.1'
ss.dependency 'Tesseract.EthereumTypes', '~> 0.1'
end
s.subspec 'Ethereum.Web3' do |ss|
ss.source_files = 'Sources/Tesseract/Ethereum/Web3.swift'
ss.dependency 'TesseractSDK/Ethereum.Core'
ss.dependency 'Tesseract.EthereumWeb3', '~> 0.1'
end
s.subspec 'Ethereum.Web3.PromiseKit' do |ss|
ss.dependency 'TesseractSDK/Ethereum.Web3'
ss.dependency 'Tesseract.EthereumWeb3/PromiseKit', '~> 0.1'
end
s.subspec 'Ethereum' do |ss|
ss.dependency 'TesseractSDK/Ethereum.Web3'
end
s.subspec 'Ethereum.PromiseKit' do |ss|
ss.dependency 'TesseractSDK/Ethereum.Web3.PromiseKit'
end
s.default_subspecs = 'Core'
end