libui_paradise 0.2.49

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.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2072 -0
  3. data/doc/README.gen +1931 -0
  4. data/doc/SNIPPETS.md +94 -0
  5. data/doc/todo/todo.md +16 -0
  6. data/lib/libui_paradise/autoinclude.rb +9 -0
  7. data/lib/libui_paradise/base/base.rb +154 -0
  8. data/lib/libui_paradise/colours/colours.rb +14 -0
  9. data/lib/libui_paradise/domain_specific_language/README.md +5 -0
  10. data/lib/libui_paradise/domain_specific_language/button.yml +7 -0
  11. data/lib/libui_paradise/examples/complex/001_hbox_example.rb +17 -0
  12. data/lib/libui_paradise/examples/complex/002_tabs_example.rb +25 -0
  13. data/lib/libui_paradise/examples/complex/003_open_file_button_example.rb +38 -0
  14. data/lib/libui_paradise/examples/complex/004_font_button.rb +41 -0
  15. data/lib/libui_paradise/examples/complex/005_search_entry_example.rb +18 -0
  16. data/lib/libui_paradise/examples/complex/006_coloured_boxes_example.rb +22 -0
  17. data/lib/libui_paradise/examples/complex/007_slider_example.rb +31 -0
  18. data/lib/libui_paradise/examples/complex/008_radio_button_example.rb +23 -0
  19. data/lib/libui_paradise/examples/complex/009_separator_example.rb +25 -0
  20. data/lib/libui_paradise/examples/complex/010_table_example.rb +55 -0
  21. data/lib/libui_paradise/examples/complex/011_two_buttons_showing_how_to_enable_and_disable_them.rb +32 -0
  22. data/lib/libui_paradise/examples/complex/012_password_entry_example.rb +29 -0
  23. data/lib/libui_paradise/examples/complex/013_form_example.rb +38 -0
  24. data/lib/libui_paradise/examples/complex/014_text_example.rb +18 -0
  25. data/lib/libui_paradise/examples/complex/015_text_view_example.rb +16 -0
  26. data/lib/libui_paradise/examples/complex/016_grid_example.rb +31 -0
  27. data/lib/libui_paradise/examples/complex/017_unicode_text_example.rb +30 -0
  28. data/lib/libui_paradise/examples/complex/018_spinbutton_example.rb +33 -0
  29. data/lib/libui_paradise/examples/complex/019_combo_box_example.rb +50 -0
  30. data/lib/libui_paradise/examples/complex/020_checkbox_example.rb +81 -0
  31. data/lib/libui_paradise/examples/complex/021_font_example.rb +115 -0
  32. data/lib/libui_paradise/examples/complex/022_simple_notepad_example.rb +25 -0
  33. data/lib/libui_paradise/examples/complex/023_msg_box_error.rb +27 -0
  34. data/lib/libui_paradise/examples/complex/024_parse_config_file_example.config +6 -0
  35. data/lib/libui_paradise/examples/complex/024_parse_config_file_example.rb +15 -0
  36. data/lib/libui_paradise/examples/complex/025_colour_button.rb +53 -0
  37. data/lib/libui_paradise/examples/complex/026_basic_table_image.rb +96 -0
  38. data/lib/libui_paradise/examples/complex/027_basic_button_example.rb +19 -0
  39. data/lib/libui_paradise/examples/complex/028_try_for_automatic_button_press_event_after_a_delay.rb +47 -0
  40. data/lib/libui_paradise/examples/complex/029_progressbar_example.rb +116 -0
  41. data/lib/libui_paradise/examples/complex/030_entry_responds_to_comment_as_synonymous_to_the_enter_key_pressed_example.rb +140 -0
  42. data/lib/libui_paradise/examples/complex/031_notification_functionality_example.rb +96 -0
  43. data/lib/libui_paradise/examples/complex/032_simple_window_example.rb +69 -0
  44. data/lib/libui_paradise/examples/complex/033_daemonize_and_exit_after_delay_example.rb +91 -0
  45. data/lib/libui_paradise/examples/simple/001_open_file_example.rb +35 -0
  46. data/lib/libui_paradise/examples/simple/002_histogram_example.rb +213 -0
  47. data/lib/libui_paradise/examples/simple/003_fancy_text_example.rb +220 -0
  48. data/lib/libui_paradise/examples/simple/004_date_time_picker.rb +52 -0
  49. data/lib/libui_paradise/examples/simple/005_text_drawing_example.rb +185 -0
  50. data/lib/libui_paradise/examples/simple/006_midi_player.rb +96 -0
  51. data/lib/libui_paradise/examples/simple/007_control_gallery.rb +191 -0
  52. data/lib/libui_paradise/examples/simple/008_basic_area_example.rb +56 -0
  53. data/lib/libui_paradise/examples/simple/009_spectrum.rb +107 -0
  54. data/lib/libui_paradise/examples/simple/README.md +7 -0
  55. data/lib/libui_paradise/experimental/dsl.rb +17 -0
  56. data/lib/libui_paradise/extensions/counters.rb +58 -0
  57. data/lib/libui_paradise/extensions/extensions.rb +29 -0
  58. data/lib/libui_paradise/extensions/hash_fiddle_pointer_widgets.rb +150 -0
  59. data/lib/libui_paradise/extensions/misc.rb +754 -0
  60. data/lib/libui_paradise/fiddle/pointer.rb +1158 -0
  61. data/lib/libui_paradise/generic_window/README.md +9 -0
  62. data/lib/libui_paradise/generic_window/generic_window.rb +79 -0
  63. data/lib/libui_paradise/images/LIBUI_PARADISE_LOGO.png +0 -0
  64. data/lib/libui_paradise/images/README.md +2 -0
  65. data/lib/libui_paradise/images/form_example.png +0 -0
  66. data/lib/libui_paradise/libui_classes/box.rb +156 -0
  67. data/lib/libui_paradise/libui_classes/grid.rb +55 -0
  68. data/lib/libui_paradise/libui_classes/libui_classes.rb +1611 -0
  69. data/lib/libui_paradise/project/project.rb +28 -0
  70. data/lib/libui_paradise/prototype/README.md +3 -0
  71. data/lib/libui_paradise/prototype/prototype.rb +107 -0
  72. data/lib/libui_paradise/requires/require_the_libui_classes.rb +29 -0
  73. data/lib/libui_paradise/requires/require_the_libui_paradise_project.rb +12 -0
  74. data/lib/libui_paradise/toplevel_methods/misc.rb +13 -0
  75. data/lib/libui_paradise/version/version.rb +17 -0
  76. data/lib/libui_paradise.rb +1 -0
  77. data/libui_paradise.gemspec +49 -0
  78. data/test/testing_generic_window.rb +20 -0
  79. metadata +156 -0
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'libui_paradise/project/project.rb'
6
+ # LibuiParadise.project_base_dir?
7
+ # =========================================================================== #
8
+ module LibuiParadise
9
+
10
+ # ========================================================================= #
11
+ # === PROJECT_BASE_DIRECTORY
12
+ # ========================================================================= #
13
+ PROJECT_BASE_DIRECTORY =
14
+ File.absolute_path("#{__dir__}/..")+'/'
15
+ BASE_DIR = PROJECT_BASE_DIRECTORY
16
+
17
+ # ========================================================================= #
18
+ # === LibuiParadise.project_base_dir?
19
+ #
20
+ # Preferentially use this method rather than the constant above directly.
21
+ # ========================================================================= #
22
+ def self.project_base_dir?
23
+ PROJECT_BASE_DIRECTORY
24
+ end; self.instance_eval { alias project_base_dir project_base_dir? } # === LibuiParadise.project_base_dir
25
+ self.instance_eval { alias project_base_dir? project_base_dir? } # === LibuiParadise.project_base_dir?
26
+ self.instance_eval { alias project_base_directory? project_base_dir? } # === LibuiParadise.project_base_directory?
27
+
28
+ end
@@ -0,0 +1,3 @@
1
+ The .rb file in this directory can be used to quickly copy/paste
2
+ a working skeleton that can be adjusted and modifed for quick
3
+ GUI prototyping via libui.
@@ -0,0 +1,107 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # === LibuiParadise::GUI::LibUI::Prototype
6
+ # =========================================================================== #
7
+ module LibuiParadise
8
+
9
+ module GUI
10
+
11
+ module LibUI
12
+
13
+ class Prototype # === LibuiParadise::GUI::LibUI::Prototype
14
+
15
+ alias e puts
16
+
17
+ require 'libui_paradise'
18
+ include LibuiParadise::Extensions
19
+
20
+ # require 'bioroebe/gui/shared_code/levensthein_distance/levensthein_distance_module.rb'
21
+ # include Bioroebe::GUI::LevenstheinDistanceModule
22
+
23
+ # ========================================================================= #
24
+ # === TITLE
25
+ # ========================================================================= #
26
+ TITLE = 'A prototype for LibUI'
27
+
28
+ # ========================================================================= #
29
+ # === WIDTH
30
+ # ========================================================================= #
31
+ WIDTH = 680
32
+
33
+ # ========================================================================= #
34
+ # === HEIGHT
35
+ # ========================================================================= #
36
+ HEIGHT = 520
37
+
38
+ # ========================================================================= #
39
+ # === initialize
40
+ # ========================================================================= #
41
+ def initialize(
42
+ run_already = true
43
+ )
44
+ reset
45
+ run if run_already
46
+ end
47
+
48
+ # ========================================================================= #
49
+ # === reset (reset tag)
50
+ # ========================================================================= #
51
+ def reset
52
+ title_width_height(TITLE, WIDTH, HEIGHT)
53
+ end
54
+
55
+ # ========================================================================= #
56
+ # === create_skeleton (create tag, skeleton tag)
57
+ # ========================================================================= #
58
+ def create_skeleton
59
+ # ======================================================================= #
60
+ # === @window
61
+ # ======================================================================= #
62
+ @window = ui_padded_main_window(title?, width?, height?, 0)
63
+ end
64
+
65
+ # ========================================================================= #
66
+ # === run
67
+ # ========================================================================= #
68
+ def run
69
+ create_skeleton_then_connect_skeleton
70
+ outer_vbox = padded_vbox
71
+ # ======================================================================= #
72
+ # First add the two buttons on top:
73
+ # ======================================================================= #
74
+ hbox_on_top = padded_hbox
75
+ button_refresh = ui_button('Refresh')
76
+ button_refresh.on_clicked {
77
+ e 'TODO: Refresh this ... or add any other functionality.'
78
+ }
79
+ hbox_on_top.maximal(button_refresh)
80
+ hbox_on_top.maximal(quit_button)
81
+ outer_vbox.minimal(hbox_on_top)
82
+ outer_vbox.add_hsep
83
+
84
+ grid = ui_padded_grid
85
+ # widget, left, top, xspan, yspan, hexpand, halign, vexpand, valign
86
+ grid.ui_grid_append(text('Left'), 0, 0, 1, 1, 0, 0.5, 1, 0)
87
+ grid.ui_grid_append(text('Right'), 1, 0, 1, 1, 0, 0.5, 1, 0)
88
+
89
+ 3.times.each {|index| index += 1
90
+ # ===================================================================== #
91
+ # left, top, xspan, yspan, hexpand, halign, vexpand, valign
92
+ # 0, 0, 2, 1, 0, 0, 1, 0
93
+ # ===================================================================== #
94
+ grid.ui_grid_append(text(index.to_s), 0, 1+index, 1, 1, 1, 1, 1, 1)
95
+ label_exam_topic = text(entry.to_s)
96
+ grid.ui_grid_append(label_exam_topic, 1, 1+index, 1, 1, 1, 1, 1, 1)
97
+ }
98
+ outer_vbox.maximal(grid)
99
+ @window.add(outer_vbox)
100
+ @window.intelligent_exit
101
+ end
102
+
103
+ end; end; end; end
104
+
105
+ if __FILE__ == $PROGRAM_NAME
106
+ LibuiParadise::GUI::LibUI::Prototype.new
107
+ end
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'libui_paradise/requires/require_the_libui_classes.rb'
6
+ # =========================================================================== #
7
+ module LibuiParadise
8
+
9
+ require 'libui_paradise/project/project.rb'
10
+
11
+ # ========================================================================= #
12
+ # === LibuiParadise.do_require_the_libui_classes
13
+ #
14
+ # This method will batch-require all libui-paradise classes under
15
+ # the libui_classes/ subdirectory.
16
+ # ========================================================================= #
17
+ def self.do_require_the_libui_classes
18
+ target = LibuiParadise.project_base_dir?+'libui_classes/*.rb'
19
+ files_that_are_to_be_required = Dir[target]
20
+ files_that_are_to_be_required.each {|this_file|
21
+ require "libui_paradise/libui_classes/#{File.basename(this_file)}"
22
+ }
23
+ end
24
+
25
+ end
26
+
27
+ if __FILE__ == $PROGRAM_NAME
28
+ LibuiParadise.do_require_the_libui_classes
29
+ end
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'libui_paradise/requires/require_the_libui_paradise_project.rb'
6
+ # =========================================================================== #
7
+ require 'libui_paradise/extensions/extensions.rb' # This also pulls in another file, called pointer.rb.
8
+ require 'libui_paradise/project/project.rb'
9
+ require 'libui_paradise/toplevel_methods/misc.rb'
10
+ require 'libui_paradise/requires/require_the_libui_classes.rb'
11
+
12
+ LibuiParadise.do_require_the_libui_classes
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'libui_paradise/toplevel_methods/misc.rb'
6
+ # =========================================================================== #
7
+ module LibuiParadise
8
+
9
+ end
10
+
11
+ if __FILE__ == $PROGRAM_NAME
12
+ LibuiParadise
13
+ end # misc.rb
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ module LibuiParadise
6
+
7
+ # ========================================================================= #
8
+ # === VERSION
9
+ # ========================================================================= #
10
+ VERSION = '0.2.49'
11
+
12
+ # ========================================================================= #
13
+ # === LAST_UPDATE
14
+ # ========================================================================= #
15
+ LAST_UPDATE = '09.10.2022'
16
+
17
+ end
@@ -0,0 +1 @@
1
+ require 'libui_paradise/requires/require_the_libui_paradise_project.rb'
@@ -0,0 +1,49 @@
1
+ # =========================================================================== #
2
+ # Gemspec for this project.
3
+ # =========================================================================== #
4
+ require 'libui_paradise/version/version.rb'
5
+ require 'roebe/toplevel_methods/misc.rb'
6
+
7
+ Gem::Specification.new { |s|
8
+
9
+ s.name = 'libui_paradise'
10
+ s.version = LibuiParadise::VERSION
11
+ s.date = Time.now.strftime('%Y-%m-%d')
12
+
13
+ DESCRIPTION = <<-EOF
14
+
15
+ This project bundles together some custom bindings and code to the
16
+ official (upstream) ruby-libui interface. ruby-libui, in turn,
17
+ makes available code written in the libui project. You can find
18
+ the libui project here: https://github.com/andlabs/libui
19
+ and the ruby-libui bindings maintained by kojix2 here:
20
+ https://rubygems.org/gems/libui
21
+
22
+ For more documentation about the libui_paradise gem, please have a look
23
+ at the official homepage of this gem at rubygems.org, at its
24
+ documentation/ link on the bottom right hand side (or just use
25
+ this link directly:
26
+ https://www.rubydoc.info/gems/libui_paradise/
27
+ )
28
+
29
+ EOF
30
+
31
+ s.summary = DESCRIPTION
32
+ s.description = DESCRIPTION
33
+
34
+ s.authors = ['Robert A. Heiler']
35
+ s.email = Roebe.email?
36
+ s.files = Dir['**/*']
37
+ s.license = 'MIT'
38
+ s.homepage = 'https://www.rubydoc.info/gems/libui_paradise/'
39
+
40
+ s.required_ruby_version = '>= '+Roebe.third_most_stable_version_of_ruby
41
+ s.required_rubygems_version = '>= '+Gem::VERSION
42
+ s.rubygems_version = '>= '+Gem::VERSION
43
+
44
+ # ========================================================================= #
45
+ # Dependencies for the project:
46
+ # ========================================================================= #
47
+ s.add_dependency 'libui'
48
+
49
+ }
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ require 'libui_paradise'
6
+
7
+ text1 = LibuiParadise.text('Some text here.')
8
+ text2 = LibuiParadise.text('Some text there.')
9
+
10
+ ::LibuiParadise.run_in_the_background
11
+
12
+ LibuiParadise.generic_window(
13
+ text1,
14
+ text2,
15
+ :create_a_quit_button # Ad-hoc create a quit-button.
16
+ ) {{
17
+ width: 620,
18
+ height: 220,
19
+ title: 'This is just a test! It should show this as title.'
20
+ }}
metadata ADDED
@@ -0,0 +1,156 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libui_paradise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.49
5
+ platform: ruby
6
+ authors:
7
+ - Robert A. Heiler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-10-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: libui
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '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'
27
+ description: |2+
28
+
29
+ This project bundles together some custom bindings and code to the
30
+ official (upstream) ruby-libui interface. ruby-libui, in turn,
31
+ makes available code written in the libui project. You can find
32
+ the libui project here: https://github.com/andlabs/libui
33
+ and the ruby-libui bindings maintained by kojix2 here:
34
+ https://rubygems.org/gems/libui
35
+
36
+ For more documentation about the libui_paradise gem, please have a look
37
+ at the official homepage of this gem at rubygems.org, at its
38
+ documentation/ link on the bottom right hand side (or just use
39
+ this link directly:
40
+ https://www.rubydoc.info/gems/libui_paradise/
41
+ )
42
+
43
+ email: shevy@inbox.lt
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - README.md
49
+ - doc/README.gen
50
+ - doc/SNIPPETS.md
51
+ - doc/todo/todo.md
52
+ - lib/libui_paradise.rb
53
+ - lib/libui_paradise/autoinclude.rb
54
+ - lib/libui_paradise/base/base.rb
55
+ - lib/libui_paradise/colours/colours.rb
56
+ - lib/libui_paradise/domain_specific_language/README.md
57
+ - lib/libui_paradise/domain_specific_language/button.yml
58
+ - lib/libui_paradise/examples/complex/001_hbox_example.rb
59
+ - lib/libui_paradise/examples/complex/002_tabs_example.rb
60
+ - lib/libui_paradise/examples/complex/003_open_file_button_example.rb
61
+ - lib/libui_paradise/examples/complex/004_font_button.rb
62
+ - lib/libui_paradise/examples/complex/005_search_entry_example.rb
63
+ - lib/libui_paradise/examples/complex/006_coloured_boxes_example.rb
64
+ - lib/libui_paradise/examples/complex/007_slider_example.rb
65
+ - lib/libui_paradise/examples/complex/008_radio_button_example.rb
66
+ - lib/libui_paradise/examples/complex/009_separator_example.rb
67
+ - lib/libui_paradise/examples/complex/010_table_example.rb
68
+ - lib/libui_paradise/examples/complex/011_two_buttons_showing_how_to_enable_and_disable_them.rb
69
+ - lib/libui_paradise/examples/complex/012_password_entry_example.rb
70
+ - lib/libui_paradise/examples/complex/013_form_example.rb
71
+ - lib/libui_paradise/examples/complex/014_text_example.rb
72
+ - lib/libui_paradise/examples/complex/015_text_view_example.rb
73
+ - lib/libui_paradise/examples/complex/016_grid_example.rb
74
+ - lib/libui_paradise/examples/complex/017_unicode_text_example.rb
75
+ - lib/libui_paradise/examples/complex/018_spinbutton_example.rb
76
+ - lib/libui_paradise/examples/complex/019_combo_box_example.rb
77
+ - lib/libui_paradise/examples/complex/020_checkbox_example.rb
78
+ - lib/libui_paradise/examples/complex/021_font_example.rb
79
+ - lib/libui_paradise/examples/complex/022_simple_notepad_example.rb
80
+ - lib/libui_paradise/examples/complex/023_msg_box_error.rb
81
+ - lib/libui_paradise/examples/complex/024_parse_config_file_example.config
82
+ - lib/libui_paradise/examples/complex/024_parse_config_file_example.rb
83
+ - lib/libui_paradise/examples/complex/025_colour_button.rb
84
+ - lib/libui_paradise/examples/complex/026_basic_table_image.rb
85
+ - lib/libui_paradise/examples/complex/027_basic_button_example.rb
86
+ - lib/libui_paradise/examples/complex/028_try_for_automatic_button_press_event_after_a_delay.rb
87
+ - lib/libui_paradise/examples/complex/029_progressbar_example.rb
88
+ - lib/libui_paradise/examples/complex/030_entry_responds_to_comment_as_synonymous_to_the_enter_key_pressed_example.rb
89
+ - lib/libui_paradise/examples/complex/031_notification_functionality_example.rb
90
+ - lib/libui_paradise/examples/complex/032_simple_window_example.rb
91
+ - lib/libui_paradise/examples/complex/033_daemonize_and_exit_after_delay_example.rb
92
+ - lib/libui_paradise/examples/simple/001_open_file_example.rb
93
+ - lib/libui_paradise/examples/simple/002_histogram_example.rb
94
+ - lib/libui_paradise/examples/simple/003_fancy_text_example.rb
95
+ - lib/libui_paradise/examples/simple/004_date_time_picker.rb
96
+ - lib/libui_paradise/examples/simple/005_text_drawing_example.rb
97
+ - lib/libui_paradise/examples/simple/006_midi_player.rb
98
+ - lib/libui_paradise/examples/simple/007_control_gallery.rb
99
+ - lib/libui_paradise/examples/simple/008_basic_area_example.rb
100
+ - lib/libui_paradise/examples/simple/009_spectrum.rb
101
+ - lib/libui_paradise/examples/simple/README.md
102
+ - lib/libui_paradise/experimental/dsl.rb
103
+ - lib/libui_paradise/extensions/counters.rb
104
+ - lib/libui_paradise/extensions/extensions.rb
105
+ - lib/libui_paradise/extensions/hash_fiddle_pointer_widgets.rb
106
+ - lib/libui_paradise/extensions/misc.rb
107
+ - lib/libui_paradise/fiddle/pointer.rb
108
+ - lib/libui_paradise/generic_window/README.md
109
+ - lib/libui_paradise/generic_window/generic_window.rb
110
+ - lib/libui_paradise/images/LIBUI_PARADISE_LOGO.png
111
+ - lib/libui_paradise/images/README.md
112
+ - lib/libui_paradise/images/form_example.png
113
+ - lib/libui_paradise/libui_classes/box.rb
114
+ - lib/libui_paradise/libui_classes/grid.rb
115
+ - lib/libui_paradise/libui_classes/libui_classes.rb
116
+ - lib/libui_paradise/project/project.rb
117
+ - lib/libui_paradise/prototype/README.md
118
+ - lib/libui_paradise/prototype/prototype.rb
119
+ - lib/libui_paradise/requires/require_the_libui_classes.rb
120
+ - lib/libui_paradise/requires/require_the_libui_paradise_project.rb
121
+ - lib/libui_paradise/toplevel_methods/misc.rb
122
+ - lib/libui_paradise/version/version.rb
123
+ - libui_paradise.gemspec
124
+ - test/testing_generic_window.rb
125
+ homepage: https://www.rubydoc.info/gems/libui_paradise/
126
+ licenses:
127
+ - MIT
128
+ metadata: {}
129
+ post_install_message:
130
+ rdoc_options: []
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: 2.7.6
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 3.3.7
143
+ requirements: []
144
+ rubygems_version: 3.3.7
145
+ signing_key:
146
+ specification_version: 4
147
+ summary: 'This project bundles together some custom bindings and code to the official
148
+ (upstream) ruby-libui interface. ruby-libui, in turn, makes available code written
149
+ in the libui project. You can find the libui project here: https://github.com/andlabs/libui
150
+ and the ruby-libui bindings maintained by kojix2 here: https://rubygems.org/gems/libui For
151
+ more documentation about the libui_paradise gem, please have a look at the official
152
+ homepage of this gem at rubygems.org, at its documentation/ link on the bottom right
153
+ hand side (or just use this link directly: https://www.rubydoc.info/gems/libui_paradise/
154
+ )'
155
+ test_files: []
156
+ ...