forked from ide/Synchronized
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSynchronized.podspec
More file actions
24 lines (23 loc) · 946 Bytes
/
Copy pathSynchronized.podspec
File metadata and controls
24 lines (23 loc) · 946 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 = "2.0.1"
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.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.requires_arc = true
s.source_files = [
'Synchronized/Synchronized.swift',
'Synchronized/ObjCSynchronized.{h,m}'
]
s.public_header_files = []
end