StickyPostRR 0.2.4
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 +7 -0
- data/bin/stickypostrr +19 -0
- data/lib/stickypostrr.rb +5 -0
- metadata +45 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 68e4f0ef3a44f2ee814b2f163d44e458e34c25a83e85bbdf3b5513ed383773dc
|
4
|
+
data.tar.gz: 2e660a3412a06e9180d938f4540a0fd2a39d2ea8812625bbb8c80d4e4bb53566
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dd139bc50da7c15a878303a12b2a7ca548ba4f257ef2873e8a097e7089d1a4791896c0fdaca2907a1f2c89c406db3f898ca6a44aa2afbe7f3306efbc0a2ef746
|
7
|
+
data.tar.gz: d0d68f9eb34670edb8ff2e5fc143dd293601b80c8588f8eb8703344b5a3588b5d338108ec3825f29a477182e778d353472abe2cbf55682ffddc944b142663114
|
data/bin/stickypostrr
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'libui'
|
3
|
+
require 'colorize'
|
4
|
+
UI = LibUI
|
5
|
+
UI.init
|
6
|
+
main_window = UI.new_window('StickyPostRR', 400, 200, 1)
|
7
|
+
UI.window_on_closing(main_window) do
|
8
|
+
puts '==> Program exited!'.colorize(:red)
|
9
|
+
UI.control_destroy(main_window)
|
10
|
+
UI.quit
|
11
|
+
0
|
12
|
+
end
|
13
|
+
vbox = UI.new_vertical_box
|
14
|
+
UI.window_set_child(main_window, vbox)
|
15
|
+
entry = UI.new_non_wrapping_multiline_entry
|
16
|
+
UI.box_append(vbox, entry, 1)
|
17
|
+
UI.control_show(main_window)
|
18
|
+
UI.main
|
19
|
+
UI.quit
|
data/lib/stickypostrr.rb
ADDED
metadata
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: StickyPostRR
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- NillyTheL0L
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Create a sticky Post
|
14
|
+
email: iagodp08@gmail.com
|
15
|
+
executables:
|
16
|
+
- stickypostrr
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- bin/stickypostrr
|
21
|
+
- lib/stickypostrr.rb
|
22
|
+
homepage: https://github.com/nillythel0l/stickypostrr
|
23
|
+
licenses:
|
24
|
+
- MIT
|
25
|
+
metadata: {}
|
26
|
+
post_install_message:
|
27
|
+
rdoc_options: []
|
28
|
+
require_paths:
|
29
|
+
- lib
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
requirements: []
|
41
|
+
rubygems_version: 3.2.5
|
42
|
+
signing_key:
|
43
|
+
specification_version: 4
|
44
|
+
summary: StickyPost program
|
45
|
+
test_files: []
|