-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBonjourDevAPIFinder.podspec
More file actions
32 lines (24 loc) · 1.2 KB
/
BonjourDevAPIFinder.podspec
File metadata and controls
32 lines (24 loc) · 1.2 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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "BonjourDevAPIFinder"
s.version = "0.1.1"
s.summary = "BonjourDevAPIFinder lets you find your local development API servers automatically and choose it instead of the production API in run-time."
s.description = <<-DESC
BonjourDevAPIFinder uses Tweaks.
You need to make sure Tweaks have a way to be opened (see [Tweaks docs](https://github.com/facebook/Tweaks)).
See example project for usage.
Sample Bonjour-enabled node server project attached in the `Server Example` folder.
DESC
s.homepage = "https://github.com/swingdev/BonjourDevAPIFinder"
s.license = 'MIT'
s.author = { "Tomek Kopczuk" => "tkopczuk@gmail.com" }
s.source = { :git => "https://github.com/swingdev/BonjourDevAPIFinder.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tkopczuk'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'BonjourDevAPIFinder' => []
}
s.frameworks = 'UIKit'
s.dependency 'Tweaks', '~> 1.1'
end