hyperlist 1.2.7 → 1.4.1
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 +4 -4
- data/CHANGELOG.md +81 -0
- data/README.md +71 -11
- data/hyperlist +582 -81
- data/hyperlist.gemspec +1 -1
- data/sample.hl +84 -82
- metadata +2 -2
data/hyperlist.gemspec
CHANGED
data/sample.hl
CHANGED
@@ -1,83 +1,85 @@
|
|
1
1
|
HyperList Sample Document
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
2
|
+
Project Management #project
|
3
|
+
[ ] Planning Phase
|
4
|
+
[X] Define objectives
|
5
|
+
[X] Identify stakeholders
|
6
|
+
[O] Create timeline
|
7
|
+
[ ] Budget estimation
|
8
|
+
Research costs
|
9
|
+
Get quotes from vendors
|
10
|
+
[3] Review with finance team
|
11
|
+
Implementation
|
12
|
+
Development Tasks
|
13
|
+
[ ] Backend API
|
14
|
+
Authentication module
|
15
|
+
Database schema
|
16
|
+
REST endpoints
|
17
|
+
[ ] Frontend UI
|
18
|
+
Login page
|
19
|
+
Dashboard
|
20
|
+
Reports section
|
21
|
+
Testing
|
22
|
+
Unit tests
|
23
|
+
Integration tests
|
24
|
+
User acceptance testing
|
25
|
+
Documentation
|
26
|
+
Technical documentation
|
27
|
+
User manual
|
28
|
+
Training materials
|
29
|
+
Personal Tasks #personal
|
30
|
+
[X] Morning routine
|
31
|
+
[X] Exercise
|
32
|
+
[X] Breakfast
|
33
|
+
[X] Review calendar
|
34
|
+
[x] 2025-08-11 13.30: Review meeting notes
|
35
|
+
[ ] Shopping list
|
36
|
+
[5 liters] Milk
|
37
|
+
[2 packages] Butter
|
38
|
+
Vegetables
|
39
|
+
Tomatoes
|
40
|
+
Lettuce
|
41
|
+
Carrots
|
42
|
+
Learning goals
|
43
|
+
*Master* Ruby programming
|
44
|
+
Study /design patterns/
|
45
|
+
Practice _algorithms_
|
46
|
+
References and Links
|
47
|
+
<file:~/Documents/specs.pdf>
|
48
|
+
<https://example.com/documentation>
|
49
|
+
See also: <Project Management>
|
50
|
+
Previous version: <-10>
|
51
|
+
Complex Examples
|
52
|
+
2025-08-11 11.51: Meeting notes
|
53
|
+
State: System initialized
|
54
|
+
Transition: User login -> Dashboard
|
55
|
+
[2..5] Retry attempts allowed
|
56
|
+
[?] Optional configuration
|
57
|
+
; This is a comment
|
58
|
+
Setting A = value1
|
59
|
+
Setting B = value2
|
60
|
+
Examples with parentheses and quotes
|
61
|
+
Meeting (scheduled for 2pm)
|
62
|
+
Task "Review documentation" (high priority)
|
63
|
+
Note: 'This is important' (see reference)
|
64
|
+
Conditional examples with operators
|
65
|
+
AND: Complete all tests AND: Deploy to production
|
66
|
+
OR: Use Docker OR: Use Kubernetes
|
67
|
+
IF: Tests pass THEN: Deploy automatically
|
68
|
+
NOT: Include debug logs
|
69
|
+
WHEN: User logged in THEN: Show dashboard
|
70
|
+
UNLESS: Admin privileges THEN: Deny access
|
71
|
+
Multi-level nesting example
|
72
|
+
Level 1
|
73
|
+
Level 2
|
74
|
+
Level 3
|
75
|
+
Level 4
|
76
|
+
Level 5
|
77
|
+
Deep nesting test
|
78
|
+
Markdown-style formatting
|
79
|
+
*Bold text example*
|
80
|
+
/Italic text example/
|
81
|
+
_Underlined text example_
|
82
|
+
Combined: *bold and /italic/ together*
|
83
|
+
Hash tags: #important #urgent #review
|
84
|
+
|
85
|
+
((fold_level=3))
|
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.
|
4
|
+
version: 1.4.1
|
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-
|
11
|
+
date: 2025-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|