-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNSNotificationCenterMock.podspec
More file actions
27 lines (21 loc) · 1.12 KB
/
NSNotificationCenterMock.podspec
File metadata and controls
27 lines (21 loc) · 1.12 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
Pod::Spec.new do |s|
s.name = "NSNotificationCenterMock"
s.version = "0.2.0"
s.summary = "A simple mock for NSNotificationCenter for easily testing NSNotificationCenter related tasks."
s.description = <<-DESC
NSNotificationCenter is a class used for mocking NSNotificationCenter. You can use this class to test
NSNotification logic in your project such as whether certain NSNotifications were posted, registration/unregistration
to/from observers and more. Compatible with Swift 4.x
DESC
s.homepage = "https://github.com/attheodo/NSNotificationCenterMock"
s.license = 'MIT'
s.author = { "attheodo" => "at@atworks.gr" }
s.source = { :git => "https://github.com/attheodo/NSNotificationCenterMock.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/attheodo'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'NSNotificationCenterMock' => ['Pod/Assets/*.png']
}
end