-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHSTestingBackchannel.podspec
35 lines (18 loc) · 995 Bytes
/
HSTestingBackchannel.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
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "HSTestingBackchannel"
s.version = "1.3.2"
s.summary = "Send notifications directly from your UITesting classes to your running app."
s.description = <<-DESC
Sometimes you want to cheat in your UITesting.
HSTestingBackchannel provides an easy way for you to send notifications to your running app. You can use these to set things up for tests, screenshots, etc
DESC
s.homepage = "https://github.com/ConfusedVorlon/HSTestingBackchannel"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Rob" => "Rob@HobbyistSoftware.com" }
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '10.0'
s.source = { :git => "https://github.com/ConfusedVorlon/HSTestingBackchannel.git", :tag => s.version }
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.dependency 'GCDWebServer'
end