forked from GrahamDennis/GDCoreDataConcurrencyDebugging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDCoreDataConcurrencyDebugging.podspec
29 lines (24 loc) · 1.15 KB
/
GDCoreDataConcurrencyDebugging.podspec
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
29
Pod::Spec.new do |s|
s.name = "GDCoreDataConcurrencyDebugging"
s.version = "0.2"
s.summary = "Find out when you're accessing an NSManagedObject on the wrong queue/thread."
s.description = <<-DESC
GDCoreDataConcurrencyDebugging helps you find cases where NSManagedObject's are being called on the wrong thread or dispatch queue.
Simply add it to your project and you will get a log message for every invalid access to an NSManagedObject.
DESC
s.homepage = "https://github.com/GrahamDennis/GDCoreDataConcurrencyDebugging"
s.license = 'MIT'
s.author = { "Graham Dennis" => "[email protected]" }
s.source = {
:git => "https://github.com/GrahamDennis/GDCoreDataConcurrencyDebugging.git",
:tag => s.version.to_s,
:submodules => true
}
s.ios.deployment_target = "3.1"
s.osx.deployment_target = "10.6"
s.requires_arc = false
s.source_files = ['Classes', 'Vendor/fishhook/fishhook.{c,h}']
s.public_header_files = 'Classes/{GDCoreDataConcurrencyDebugging,GDConcurrencyCheckingManagedObject}.h'
s.frameworks = 'CoreData'
s.dependency 'JRSwizzle'
end