-
Notifications
You must be signed in to change notification settings - Fork 3
/
Insider.podspec
26 lines (17 loc) · 967 Bytes
/
Insider.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
Pod::Spec.new do |s|
s.name = "Insider"
s.version = "1.0.1"
s.summary = "Insider is an utility framework which sets a backdoor into your app for testing tools like Appium, Calabash, Frank, etc."
s.description = <<-DESC
Insider is an utility framework which sets a backdoor into your app for testing tools like Appium, Calabash, Frank, etc.
Insider runs an HTTP server inside the application and listens for commands (RPCs).
DESC
s.homepage = "https://github.com/alexmx/Insider"
s.license = "MIT"
s.authors = "Alex Maimescu"
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/alexmx/Insider.git", :tag => "v#{s.version}" }
s.source_files = "Insider/**/*.{swift}", "Libs/**/*.{h,m,swift}"
s.libraries = 'xml2', 'z'
end