-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDependiject.podspec
36 lines (29 loc) · 1.16 KB
/
Dependiject.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
#
# Be sure to run `pod lib lint Dependiject.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'Dependiject'
s.version = '1.1.0'
s.summary = 'Dependiject provides simple, flexible, and thread-safe dependency injection for testability and inversion of control in SwiftUI apps.'
s.homepage = 'https://github.com/Tiny-Home-Consulting/Dependiject'
s.license = { :type => 'MPL-2.0', :file => 'LICENSE' }
s.documentation_url = 'https://dependiject.tinyhomeconsultingllc.com/documentation/'
s.authors = {
'William Baker' => '[email protected]',
'Liam Gleeson' => '[email protected]',
'Wesley Boyd' => '[email protected]'
}
s.source = {
:git => 'https://github.com/Tiny-Home-Consulting/Dependiject.git',
:tag => s.version
}
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.cocoapods_version = '>= 1.11.3'
s.swift_versions = '5.5'
s.source_files = 'Dependiject/**/*.swift'
s.frameworks = 'SwiftUI', 'Combine'
end