novnc-rails 0.1 → 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +7 -0
- data/README.md +8 -0
- data/lib/novnc-rails/version.rb +1 -1
- data/vendor/assets/javascripts/novnc-rails.js +27 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26a8ef0a3f22373c23bde363ef437233e4a97a1f
|
|
4
|
+
data.tar.gz: 687b02cf0936e738bea61cea9a34e56450686c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 329e71295de31aae3c68f97da8d8ff2bea3439bb6ee8b3687c4277788d96db99b59b3d8b5a2ee6ed707fa260fcf86ba9e5bc2c3158a4f66852804cec00f9933c
|
|
7
|
+
data.tar.gz: 2bca7b34376fbb25423a93c3d5b4528393fb8d577ed5abcde15974e8f100eb3a66f06a459e268ca899b892b8fef48e206baf4b441864c479099806b0adae64e5
|
data/LICENSE.txt
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
This project is a packaging effort for https://github.com/kanaka/noVNC.
|
|
2
|
+
|
|
3
|
+
For licence, please see https://github.com/kanaka/noVNC/blob/master/LICENSE.txt
|
|
4
|
+
which applies to the content of vendor/assets/.
|
|
5
|
+
|
|
6
|
+
The bits that are added on top of the above are provided under the Ruby licence:
|
|
7
|
+
https://www.ruby-lang.org/en/about/license.txt.
|
data/README.md
CHANGED
data/lib/novnc-rails/version.rb
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// require noVNC/Orbitron700.ttf
|
|
2
|
+
// require noVNC/Orbitron700.woff
|
|
3
|
+
// require noVNC/base.css
|
|
4
|
+
// require noVNC/black.css
|
|
5
|
+
// require noVNC/blue.css
|
|
6
|
+
|
|
7
|
+
//= require noVNC/base64
|
|
8
|
+
//= require noVNC/des
|
|
9
|
+
//= require noVNC/util
|
|
10
|
+
//= require noVNC/input
|
|
11
|
+
//= require noVNC/jsunzip
|
|
12
|
+
//= require noVNC/display
|
|
13
|
+
//= require noVNC/keyboard
|
|
14
|
+
//= require noVNC/keysym
|
|
15
|
+
//= require noVNC/keysymdef
|
|
16
|
+
//= require noVNC/logo
|
|
17
|
+
//= require noVNC/playback
|
|
18
|
+
//= require noVNC/rfb
|
|
19
|
+
// require noVNC/ui
|
|
20
|
+
//= require noVNC/websock
|
|
21
|
+
//= require noVNC/webutil
|
|
22
|
+
// require noVNC/web-socket-js
|
|
23
|
+
// require noVNC/web-socket-js/README.txt
|
|
24
|
+
// require noVNC/web-socket-js/WebSocketMain.swf
|
|
25
|
+
//= require noVNC/web-socket-js/swfobject.js
|
|
26
|
+
//= require noVNC/web-socket-js/web_socket.js
|
|
27
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: novnc-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.2'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Martin Povolny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -26,13 +26,14 @@ dependencies:
|
|
|
26
26
|
version: 3.1.0
|
|
27
27
|
description: noVNC HTML5 client packed for Rails application
|
|
28
28
|
email:
|
|
29
|
-
-
|
|
29
|
+
- mpovolny@redhat.com
|
|
30
30
|
executables: []
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- lib/novnc-rails.rb
|
|
35
35
|
- lib/novnc-rails/version.rb
|
|
36
|
+
- vendor/assets/javascripts/novnc-rails.js
|
|
36
37
|
- vendor/assets/javascripts/noVNC/rfb.js
|
|
37
38
|
- vendor/assets/javascripts/noVNC/input.js
|
|
38
39
|
- vendor/assets/javascripts/noVNC/jsunzip.js
|