osc-vnc 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +169 -0
  6. data/Rakefile +1 -0
  7. data/config/script.yml +35 -0
  8. data/examples/desktop/xstartup +5 -0
  9. data/examples/paraview/fvwm/fvwmrc +80 -0
  10. data/examples/paraview/fvwm/winxp/images/close-activedown.xpm +237 -0
  11. data/examples/paraview/fvwm/winxp/images/close-activeup.xpm +286 -0
  12. data/examples/paraview/fvwm/winxp/images/close-inactive.xpm +88 -0
  13. data/examples/paraview/fvwm/winxp/images/maximize-activedown.xpm +190 -0
  14. data/examples/paraview/fvwm/winxp/images/maximize-activeup.xpm +257 -0
  15. data/examples/paraview/fvwm/winxp/images/maximize-inactive.xpm +66 -0
  16. data/examples/paraview/fvwm/winxp/images/title-active.xpm +58 -0
  17. data/examples/paraview/fvwm/winxp/images/title-inactive.xpm +58 -0
  18. data/examples/paraview/xstartup +17 -0
  19. data/examples/totalsim-desktop/config/menus/applications.menu +84 -0
  20. data/examples/totalsim-desktop/config/menus/settings.menu +20 -0
  21. data/examples/totalsim-desktop/images/TS_LOGO.jpg +0 -0
  22. data/examples/totalsim-desktop/xlogout +8 -0
  23. data/examples/totalsim-desktop/xstartup +20 -0
  24. data/lib/osc/vnc/connview.rb +95 -0
  25. data/lib/osc/vnc/error.rb +6 -0
  26. data/lib/osc/vnc/listenable.rb +45 -0
  27. data/lib/osc/vnc/scriptview.rb +63 -0
  28. data/lib/osc/vnc/session.rb +116 -0
  29. data/lib/osc/vnc/version.rb +6 -0
  30. data/lib/osc/vnc.rb +23 -0
  31. data/osc-vnc.gemspec +26 -0
  32. data/templates/conn/awesim.mustache +1 -0
  33. data/templates/conn/jnlp.mustache +49 -0
  34. data/templates/conn/novnc.mustache +1 -0
  35. data/templates/conn/osxvnc.mustache +1 -0
  36. data/templates/conn/terminal.mustache +1 -0
  37. data/templates/conn/txt.mustache +4 -0
  38. data/templates/conn/vnc.mustache +1 -0
  39. data/templates/conn/yaml.mustache +6 -0
  40. data/templates/script/_port_helpers.mustache +28 -0
  41. data/templates/script/_setup_env.mustache +7 -0
  42. data/templates/script/_ssh_tunnel.mustache +28 -0
  43. data/templates/script/_start_vncserver.mustache +38 -0
  44. data/templates/script/_tcp_server.mustache +6 -0
  45. data/templates/script/server.mustache +46 -0
  46. data/templates/script/vnc.mustache +86 -0
  47. metadata +153 -0
metadata ADDED
@@ -0,0 +1,153 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: osc-vnc
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.6
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy Nicklas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pbs
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: mustache
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.99'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 0.99.5
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '0.99'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 0.99.5
47
+ - !ruby/object:Gem::Dependency
48
+ name: bundler
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.7'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.7'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '10.0'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '10.0'
75
+ description: This library submits VNC jobs to the Oxymoron cluster as well as obtains
76
+ the connection information required for a connection to take place with a VNC client.
77
+ (OSC specific)
78
+ email:
79
+ - jnicklas@osc.edu
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files: []
83
+ files:
84
+ - ".gitignore"
85
+ - Gemfile
86
+ - LICENSE.txt
87
+ - README.md
88
+ - Rakefile
89
+ - config/script.yml
90
+ - examples/desktop/xstartup
91
+ - examples/paraview/fvwm/fvwmrc
92
+ - examples/paraview/fvwm/winxp/images/close-activedown.xpm
93
+ - examples/paraview/fvwm/winxp/images/close-activeup.xpm
94
+ - examples/paraview/fvwm/winxp/images/close-inactive.xpm
95
+ - examples/paraview/fvwm/winxp/images/maximize-activedown.xpm
96
+ - examples/paraview/fvwm/winxp/images/maximize-activeup.xpm
97
+ - examples/paraview/fvwm/winxp/images/maximize-inactive.xpm
98
+ - examples/paraview/fvwm/winxp/images/title-active.xpm
99
+ - examples/paraview/fvwm/winxp/images/title-inactive.xpm
100
+ - examples/paraview/xstartup
101
+ - examples/totalsim-desktop/config/menus/applications.menu
102
+ - examples/totalsim-desktop/config/menus/settings.menu
103
+ - examples/totalsim-desktop/images/TS_LOGO.jpg
104
+ - examples/totalsim-desktop/xlogout
105
+ - examples/totalsim-desktop/xstartup
106
+ - lib/osc/vnc.rb
107
+ - lib/osc/vnc/connview.rb
108
+ - lib/osc/vnc/error.rb
109
+ - lib/osc/vnc/listenable.rb
110
+ - lib/osc/vnc/scriptview.rb
111
+ - lib/osc/vnc/session.rb
112
+ - lib/osc/vnc/version.rb
113
+ - osc-vnc.gemspec
114
+ - templates/conn/awesim.mustache
115
+ - templates/conn/jnlp.mustache
116
+ - templates/conn/novnc.mustache
117
+ - templates/conn/osxvnc.mustache
118
+ - templates/conn/terminal.mustache
119
+ - templates/conn/txt.mustache
120
+ - templates/conn/vnc.mustache
121
+ - templates/conn/yaml.mustache
122
+ - templates/script/_port_helpers.mustache
123
+ - templates/script/_setup_env.mustache
124
+ - templates/script/_ssh_tunnel.mustache
125
+ - templates/script/_start_vncserver.mustache
126
+ - templates/script/_tcp_server.mustache
127
+ - templates/script/server.mustache
128
+ - templates/script/vnc.mustache
129
+ homepage: https://github.com/OSC/osc-vnc
130
+ licenses:
131
+ - MIT
132
+ metadata: {}
133
+ post_install_message:
134
+ rdoc_options: []
135
+ require_paths:
136
+ - lib
137
+ required_ruby_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ requirements: []
148
+ rubyforge_project:
149
+ rubygems_version: 2.4.8
150
+ signing_key:
151
+ specification_version: 4
152
+ summary: Library to create VNC jobs with HPC resources (OSC specific)
153
+ test_files: []