guindilla_gui 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GuindillaGUI
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/ruby
2
+
3
+ #------------------------------------------------------------------------------#
4
+ # Copyleft 2022
5
+ # This file is part of GuindillaGUI.
6
+ # GuindillaGUI is free software: you can redistribute it and/or modify it under
7
+ # the terms of the GNU General Public License as published by the Free Software
8
+ # Foundation, either version 3 of the License, or (at your option) any later
9
+ # version.
10
+ # GuindillaGUI is distributed in the hope that it will be useful, but WITHOUT
11
+ # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
+ # You should have received a copy of the GNU General Public License along with
14
+ # GuindillaGUI. If not, see <https://www.gnu.org/licenses/>.
15
+ #------------------------------------------------------------------------------#
16
+
17
+ require 'em-websocket'
18
+ require 'launchy'
19
+ require_relative 'guindilla_gui/guindilla_classes.rb'
20
+ require_relative 'guindilla_gui/guindilla_methods.rb'
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guindilla_gui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - lljk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-04-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: em-websocket
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: launchy
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.5.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.5.0
41
+ description: Ruby library for creating browser-based graphical user interfaces.
42
+ email:
43
+ - j.kiddin@proton.me
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files:
47
+ - README.md
48
+ - CHANGELOG.md
49
+ - LICENSE.md
50
+ files:
51
+ - CHANGELOG.md
52
+ - LICENSE.md
53
+ - README.md
54
+ - lib/guindilla_gui.rb
55
+ - lib/guindilla_gui/guindilla_classes.rb
56
+ - lib/guindilla_gui/guindilla_methods.rb
57
+ - lib/guindilla_gui/resources/guindilla.html
58
+ - lib/guindilla_gui/resources/guindilla.js
59
+ - lib/guindilla_gui/resources/guindilla_gui.png
60
+ - lib/guindilla_gui/resources/jquery/jquery-3.6.0.min.js
61
+ - lib/guindilla_gui/resources/plotly/plotly-2.9.0.min.js
62
+ - lib/guindilla_gui/version.rb
63
+ homepage: https://gitlab.com/starmonkey1/guindilla_gui
64
+ licenses:
65
+ - GPL-3.0-or-later
66
+ metadata:
67
+ homepage_uri: https://gitlab.com/starmonkey1/guindilla_gui
68
+ source_code_uri: https://gitlab.com/starmonkey1/guindilla_gui
69
+ post_install_message:
70
+ rdoc_options:
71
+ - "--title"
72
+ - GuindillaGUI
73
+ - "--main"
74
+ - README.md
75
+ - "--line-numbers"
76
+ - "--exclude"
77
+ - resources
78
+ - "--markup"
79
+ - markdown
80
+ - "--quiet"
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: 2.6.0
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.3.8
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Ruby library for creating browser-based graphical user interfaces.
98
+ test_files: []