forked from hmlongco/Factory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactory.podspec
More file actions
23 lines (19 loc) · 747 Bytes
/
Factory.podspec
File metadata and controls
23 lines (19 loc) · 747 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 = "Factory"
s.version = "2.0.3"
s.summary = "A Modern Dependency Injection / Service Locator framework for Swift on iOS."
s.homepage = "https://github.com/hmlongco/Factory"
s.license = "MIT"
s.author = "Michael Long"
s.source = { :git => "https://github.com/hmlongco/Factory.git", :tag => "#{s.version}" }
s.source_files = "Classes", "Sources/Factory/*.swift"
s.swift_version = '5.1'
s.ios.deployment_target = "11.0"
s.ios.framework = 'UIKit'
s.tvos.deployment_target = "13.0"
s.tvos.framework = 'UIKit'
s.watchos.deployment_target = "8.2"
s.watchos.framework = 'SwiftUI'
s.osx.deployment_target = "10.14"
s.osx.framework = 'AppKit'
end