-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathremote-controllable.podspec
More file actions
38 lines (27 loc) · 1.51 KB
/
remote-controllable.podspec
File metadata and controls
38 lines (27 loc) · 1.51 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
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = "remote-controllable"
s.version = "0.2.0"
s.summary = "Enable remote control of application"
s.description = <<-DESC
Used in connection with websocket server to enable remote controll of app
Features:
1. Connects to socket server broadcasting the need for support
2. Transmits screenshots to agents who accept the support request
3. Allows support agents to highlight features on screen by drawing on the users screen
4. Alerts users to the remote session by drawing a red box around the screen
DESC
s.homepage = "http://www.alexandra.dk"
s.license = { :type => 'aGPL', :file => 'LICENSE' }
s.author = { "Thomas Gilbert" => "thomas.gilbert@alexandra.dk" }
s.social_media_url = "http://twitter.com/thomasbjgilbert"
s.platform = :ios, "10.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#
s.source = { :git => "https://github.com/glagnar/remote-controllable.git", :tag => "#{s.version}" }
s.source_files = 'Pod/Classes/**/*'
s.requires_arc = true
s.dependency "Socket.IO-Client-Swift", "~> 10.0.0"
end