-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSynchronized.podspec
More file actions
24 lines (23 loc) · 937 Bytes
/
Copy pathSynchronized.podspec
File metadata and controls
24 lines (23 loc) · 937 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 = "Synchronized"
s.version = "4.0.0"
s.summary = "Exposes Objective-C's @synchronized directive to Swift"
s.description = <<-DESC
A simple way to use Objective-C's `@synchronized`
directive from Swift.
As with `@synchronized`, Synchronized releases locks when
Objective-C exceptions are thrown.
DESC
s.homepage = "https://github.com/ide/Synchronized"
s.license = "MIT"
s.author = "James Ide"
s.source = { :git => "https://github.com/ide/Synchronized.git", :tag => s.version.to_s }
s.swift_version = '5.4'
s.platform = :ios, '12.0'
s.requires_arc = true
s.source_files = [
'Synchronized/Synchronized.swift',
'Synchronized/ObjCSynchronized.{h,m}'
]
s.public_header_files = []
end