-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKRCMulticastDelegate.podspec
More file actions
29 lines (21 loc) · 1.14 KB
/
Copy pathKRCMulticastDelegate.podspec
File metadata and controls
29 lines (21 loc) · 1.14 KB
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
Pod::Spec.new do |s|
s.name = 'KRCMulticastDelegate'
s.module_name = 'MulticastDelegate'
s.version = '0.1.6'
s.summary = 'KRCMulticastDelegate - A linked list of delegates, also called an invokation list.'
s.description = <<-DESC
KRCMulticastDelegate - A linked list of delegates, also called an invokation list.
- When a multicast delegate is invoked, the delegates in the list are called synchronously in the order in which they've been added to the delegate table.
- Delegate invocation will run on the caller's thread.
DESC
s.homepage = 'https://github.com/kaosdg/MulticastDelegate'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Karl Catigbe' => 'spam@gmail.com' }
s.social_media_url = 'https://twitter.com/KaosDG'
s.source = { :git => 'https://github.com/kaosdg/MulticastDelegate.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '4.0'
s.tvos.deployment_target = '9.0'
s.source_files = ['Sources/**/*.swift', 'Sources/**/*.h']
s.public_header_files = 'Sources/**/*.h'
end