tk_paradise 0.0.11

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.

Potentially problematic release.


This version of tk_paradise might be problematic. Click here for more details.

Files changed (28) hide show
  1. checksums.yaml +7 -0
  2. data/doc/HINTS.md +318 -0
  3. data/lib/tk_paradise/base/base.rb +63 -0
  4. data/lib/tk_paradise/examples/001_dialog_box_example.rb +21 -0
  5. data/lib/tk_paradise/examples/002_draw_tiny_box.rb +22 -0
  6. data/lib/tk_paradise/examples/003_fun_with_cursors.rb +82 -0
  7. data/lib/tk_paradise/examples/004_hello_world_example.rb +22 -0
  8. data/lib/tk_paradise/examples/005_key_press_event_example.rb +21 -0
  9. data/lib/tk_paradise/examples/006_multiple_buttons.rb +16 -0
  10. data/lib/tk_paradise/examples/007_packing_example_in_tk.rb +28 -0
  11. data/lib/tk_paradise/examples/008_pig_latin_example.rb +70 -0
  12. data/lib/tk_paradise/examples/009_scrollbar_example.rb +44 -0
  13. data/lib/tk_paradise/examples/010_telnet_client.rb +106 -0
  14. data/lib/tk_paradise/examples/011_thermostat_example.rb +60 -0
  15. data/lib/tk_paradise/examples/012_tk_menu_example.rb +23 -0
  16. data/lib/tk_paradise/examples/013_tk_popup.rb +61 -0
  17. data/lib/tk_paradise/examples/014_tk_slider.rb +63 -0
  18. data/lib/tk_paradise/examples/015_choose_colour_example.rb +22 -0
  19. data/lib/tk_paradise/examples/016_spin_box_example.rb +28 -0
  20. data/lib/tk_paradise/examples/017_combo_box_example.rb +46 -0
  21. data/lib/tk_paradise/examples/018_tk_list_box_example.rb +18 -0
  22. data/lib/tk_paradise/examples/advanced/0001_example_showing_move_method.rb +32 -0
  23. data/lib/tk_paradise/tk_classes/root.rb +24 -0
  24. data/lib/tk_paradise/tk_paradise.rb +164 -0
  25. data/lib/tk_paradise/version/version.rb +19 -0
  26. data/lib/tk_paradise.rb +5 -0
  27. data/tk_paradise.gemspec +41 -0
  28. metadata +102 -0
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'tk_paradise/version/version.rb'
6
+ # =========================================================================== #
7
+ module Tk
8
+
9
+ # ========================================================================= #
10
+ # === VERSION
11
+ # ========================================================================= #
12
+ VERSION = '0.0.11'
13
+
14
+ # ========================================================================= #
15
+ # === LAST_UPDATE
16
+ # ========================================================================= #
17
+ LAST_UPDATE = '30.05.2021'
18
+
19
+ end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ require 'tk_paradise/tk_paradise.rb'
@@ -0,0 +1,41 @@
1
+ # =========================================================================== #
2
+ # Gemspec.
3
+ # =========================================================================== #
4
+ require 'tk_paradise/version/version.rb'
5
+
6
+ Gem::Specification.new { |s|
7
+
8
+ s.name = 'tk_paradise'
9
+ s.version = Tk::VERSION
10
+ s.date = Time.now.strftime('%Y-%m-%d')
11
+
12
+ DESCRIPTION = <<-EOF
13
+
14
+ This project is called tk_paradise. It provides some helper-code for
15
+ ruby-tk applications.
16
+
17
+ It is in an early beta-stage; don't use it yet.
18
+ EOF
19
+
20
+ s.summary = DESCRIPTION
21
+ s.description = DESCRIPTION
22
+
23
+ s.extra_rdoc_files = %w()
24
+
25
+ s.authors = ['Robert A. Heiler']
26
+ s.email = 'shevegen@gmail.com'
27
+ s.files = Dir['**/*']
28
+ s.license = 'GPL-2.0'
29
+ s.homepage = 'https://rubygems.org/gems/tk_paradise'
30
+
31
+ s.required_ruby_version = '>= '+RUBY_VERSION
32
+ s.required_rubygems_version = '>= '+Gem::VERSION
33
+ s.rubygems_version = '>= '+Gem::VERSION
34
+
35
+ # ========================================================================= #
36
+ # External dependencies for the project:
37
+ # ========================================================================= #
38
+ s.add_dependency 'colours'
39
+ s.add_dependency 'tk'
40
+
41
+ }
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tk_paradise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.11
5
+ platform: ruby
6
+ authors:
7
+ - Robert A. Heiler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-05-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: colours
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
+ - !ruby/object:Gem::Dependency
28
+ name: tk
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: |2
42
+
43
+ This project is called tk_paradise. It provides some helper-code for
44
+ ruby-tk applications.
45
+
46
+ It is in an early beta-stage; don't use it yet.
47
+ email: shevegen@gmail.com
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - doc/HINTS.md
53
+ - lib/tk_paradise.rb
54
+ - lib/tk_paradise/base/base.rb
55
+ - lib/tk_paradise/examples/001_dialog_box_example.rb
56
+ - lib/tk_paradise/examples/002_draw_tiny_box.rb
57
+ - lib/tk_paradise/examples/003_fun_with_cursors.rb
58
+ - lib/tk_paradise/examples/004_hello_world_example.rb
59
+ - lib/tk_paradise/examples/005_key_press_event_example.rb
60
+ - lib/tk_paradise/examples/006_multiple_buttons.rb
61
+ - lib/tk_paradise/examples/007_packing_example_in_tk.rb
62
+ - lib/tk_paradise/examples/008_pig_latin_example.rb
63
+ - lib/tk_paradise/examples/009_scrollbar_example.rb
64
+ - lib/tk_paradise/examples/010_telnet_client.rb
65
+ - lib/tk_paradise/examples/011_thermostat_example.rb
66
+ - lib/tk_paradise/examples/012_tk_menu_example.rb
67
+ - lib/tk_paradise/examples/013_tk_popup.rb
68
+ - lib/tk_paradise/examples/014_tk_slider.rb
69
+ - lib/tk_paradise/examples/015_choose_colour_example.rb
70
+ - lib/tk_paradise/examples/016_spin_box_example.rb
71
+ - lib/tk_paradise/examples/017_combo_box_example.rb
72
+ - lib/tk_paradise/examples/018_tk_list_box_example.rb
73
+ - lib/tk_paradise/examples/advanced/0001_example_showing_move_method.rb
74
+ - lib/tk_paradise/tk_classes/root.rb
75
+ - lib/tk_paradise/tk_paradise.rb
76
+ - lib/tk_paradise/version/version.rb
77
+ - tk_paradise.gemspec
78
+ homepage: https://rubygems.org/gems/tk_paradise
79
+ licenses:
80
+ - GPL-2.0
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 3.0.1
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 3.2.15
96
+ requirements: []
97
+ rubygems_version: 3.2.15
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: This project is called tk_paradise. It provides some helper-code for ruby-tk
101
+ applications. It is in an early beta-stage; don't use it yet.
102
+ test_files: []