hyperlist 1.1.0 → 1.1.2

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 (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -0
  3. data/hyperlist +754 -373
  4. data/hyperlist.gemspec +1 -1
  5. data/test.hl +4 -19
  6. metadata +2 -2
data/hyperlist.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "hyperlist"
3
- spec.version = "1.1.0"
3
+ spec.version = "1.1.2"
4
4
  spec.authors = ["Geir Isene"]
5
5
  spec.email = ["g@isene.com"]
6
6
 
data/test.hl CHANGED
@@ -3,7 +3,6 @@ HyperList Ruby TUI Test Suite v1.0
3
3
  Purpose: Test all features of the HyperList Ruby TUI application
4
4
  Run with: ./hyperlist test.hl
5
5
  Navigate through and test each feature systematically
6
-
7
6
  SYNTAX HIGHLIGHTING & COLORS
8
7
  Check: Property in red; Dates like 2025-08-12 should be red
9
8
  AND: OR: IF: THEN: Operators should appear in blue
@@ -15,9 +14,7 @@ HyperList Ruby TUI Test Suite v1.0
15
14
  *bold text* should appear bold
16
15
  /italic text/ should appear italic
17
16
  _underlined text_ should appear underlined
18
- ; Comments should be in cyan
19
17
  Templates with = markers for filling
20
-
21
18
  NAVIGATION TESTS
22
19
  Basic Movement
23
20
  j/↓ Move down through items
@@ -28,7 +25,7 @@ HyperList Ruby TUI Test Suite v1.0
28
25
  G/End Go to bottom of document
29
26
  PgUp/PgDn Page up and down
30
27
  Search
31
- / Search for text (try searching for "test")
28
+ Slash key: Search for text (try searching for "test")
32
29
  n Jump to next search match
33
30
  Marks and Jumps
34
31
  ma Set mark 'a' at current position
@@ -36,11 +33,10 @@ HyperList Ruby TUI Test Suite v1.0
36
33
  '' Jump to previous position
37
34
  R Jump to reference (place cursor on <NAVIGATION TESTS> and press R)
38
35
  Template Navigation
39
- First template =
40
- Second template =
41
- Third template =
36
+ First template =
37
+ Second template =
38
+ Third template =
42
39
  Press N to jump to next template marker and edit
43
-
44
40
  FOLDING TESTS
45
41
  Space Toggle fold on this item
46
42
  This child should hide/show when parent is folded
@@ -55,7 +51,6 @@ HyperList Ruby TUI Test Suite v1.0
55
51
  Level 4 item
56
52
  Level 5 item
57
53
  0 Multi-digit fold level (press 0 then 1 then 2 for level 12)
58
-
59
54
  EDITING TESTS
60
55
  Basic Editing
61
56
  i/Enter Edit current line
@@ -81,7 +76,6 @@ HyperList Ruby TUI Test Suite v1.0
81
76
  S-Tab Unindent item and children
82
77
  → Indent item only
83
78
  ← Unindent item only
84
-
85
79
  CHECKBOX TESTS
86
80
  [ ] Press v to add/toggle checkbox
87
81
  [X] Completed checkbox (green)
@@ -91,7 +85,6 @@ HyperList Ruby TUI Test Suite v1.0
91
85
  [3] Numbered checkbox
92
86
  [2025-08-12 14:30] Date checkbox
93
87
  Press V to toggle with timestamp
94
-
95
88
  SPECIAL FEATURES
96
89
  Presentation Mode
97
90
  Press P to enter presentation mode
@@ -104,7 +97,6 @@ HyperList Ruby TUI Test Suite v1.0
104
97
  File Operations
105
98
  F Open file reference (place cursor on file path)
106
99
  <sample.hl> Try opening this reference with F
107
-
108
100
  FILE COMMANDS
109
101
  :w Save file
110
102
  :q Quit (asks to save if modified)
@@ -121,7 +113,6 @@ HyperList Ruby TUI Test Suite v1.0
121
113
  :as on Enable autosave
122
114
  :as off Disable autosave
123
115
  :as 30 Set autosave interval to 30 seconds
124
-
125
116
  ADVANCED TESTS
126
117
  Complex Nesting
127
118
  Parent 1
@@ -135,27 +126,22 @@ HyperList Ruby TUI Test Suite v1.0
135
126
  Parent 2
136
127
  Child 2.1
137
128
  Child 2.2
138
-
139
129
  Mixed Formatting
140
130
  Item with *bold* and /italic/ and _underline_
141
131
  Item with #multiple #hash #tags
142
132
  Item with <reference> and (parentheses) and "quotes"
143
133
  AND: Operator with [X] checkbox and 2025-08-12: date
144
-
145
134
  Long Lines
146
135
  This is a very long line that should wrap properly in the terminal display and maintain proper indentation when it continues on the next visual line without breaking the hierarchical structure of the HyperList
147
-
148
136
  Special Characters
149
137
  Item with special chars: @#$%^&*(){}[]|\\:;"'<>,.?/
150
138
  Unicode: ★ ☆ ♠ ♣ ♥ ♦ → ← ↑ ↓
151
139
  Emojis: 😀 🎉 ✓ ✗ ⚠️ 📝
152
-
153
140
  HELP SYSTEM
154
141
  ? Show help screen with key bindings
155
142
  ?? Show full documentation
156
143
  Use UP/DOWN to scroll through help
157
144
  Press any other key to exit help
158
-
159
145
  TEST COMPLETION
160
146
  [ ] All syntax highlighting verified
161
147
  [ ] All navigation features tested
@@ -165,5 +151,4 @@ HyperList Ruby TUI Test Suite v1.0
165
151
  [ ] Special features operational
166
152
  [ ] File commands working
167
153
  [ ] Help system accessible
168
-
169
154
  If all tests pass, the Ruby HyperList TUI is working correctly!
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyperlist
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
8
8
  autorequire:
9
9
  bindir: "."
10
10
  cert_chain: []
11
- date: 2025-08-13 00:00:00.000000000 Z
11
+ date: 2025-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rcurses