-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftHooks.podspec
More file actions
24 lines (21 loc) · 923 Bytes
/
SwiftHooks.podspec
File metadata and controls
24 lines (21 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'SwiftHooks'
s.version = '0.1.0'
s.summary = 'A little module for plugins'
s.swift_versions = ['5.5']
s.description = <<-DESC
SwiftHooks is a package for enabling plugins and plugin architecture
with a variety of different hook implementations synchronous and
asynchronous
DESC
s.homepage = 'https://github.com/intuit/swift-hooks'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hborawski' => 'harris_borawski@intuit.com' }
s.source = { :git => 'https://github.com/intuit/swift-hooks.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.macos.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.source_files = ['Sources/SwiftHooks/**/*.swift']
s.exclude_files = ['**/*.docc/**/*']
end