-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKOInject.podspec
More file actions
23 lines (17 loc) · 829 Bytes
/
KOInject.podspec
File metadata and controls
23 lines (17 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'KOInject'
s.version = '2.0.0'
s.summary = 'Simple and lightweight IoC container for dependency injection in Swift with iOS/macOS/watchOS/tvOS'
s.description = 'Simple and lightweight IoC container, works on the register / resolve / dispose pattern with scopes of use and multiple arguments. It also supports lazy and isolated resolving.'
s.homepage = 'https://github.com/Flawion/KOInject'
s.license = 'MIT'
s.author = 'Kuba Ostrowski'
s.ios.deployment_target = '11.0'
s.macos.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'
s.source = { :git => 'https://github.com/Flawion/KOInject.git', :tag => s.version }
s.source_files = 'Sources/**/*.swift'
s.requires_arc = true
s.swift_version = ['5.1', '5.2', '5.3']
end