thor-interactive 0.1.0.pre.6 → 0.1.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/README.md +5 -0
- data/docs/assets/screenshot.png +0 -0
- data/docs/assets/thor-interactive-wide.png +0 -0
- data/lib/thor/interactive/version_constant.rb +1 -1
- metadata +4 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80722bce9679a5e2f4ebfbee379421c7f5596ee6e7c682159856ed3ead7b4362
|
|
4
|
+
data.tar.gz: 4c622b96597e2023d0d3935d73f940acfa4e301e672bf6739791acdff4b541f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e75705e9d057f85ac1b6ad51fec12d241e48a22260c90a7f7b15183c7e591d160e16333cd100656b713a21640d8feb9c4e7f5d175bcdb86f52a220e44b28711e
|
|
7
|
+
data.tar.gz: 15e7e3ed9a7b3f2f0930aa8212b32352f3b76243c604266ca13579660e372700189b3f9e8ece8dbb394ab85fd95db27b69c735711830a69576d0694add2e37a3
|
data/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Turn any Thor CLI into an interactive terminal application with persistent state, auto-completion, and a rich TUI powered by [ratatui_ruby](https://www.ratatui-ruby.dev/).
|
|
4
4
|
|
|
5
|
+
<p>
|
|
6
|
+
<img src="/docs/assets/screenshot.png" alt="thor-interactive TUI screenshot" width="600"><br>
|
|
7
|
+
<sub>Screenshot from <a href="https://github.com/scientist-labs/ragnar-cli">Ragnar</a>, a RAG pipeline built with thor-interactive.</sub>
|
|
8
|
+
</p>
|
|
9
|
+
|
|
5
10
|
Thor::Interactive converts your existing Thor command-line applications into interactive sessions — a Claude Code-like terminal UI with multi-line input, a status bar, animated spinners, and theming. Perfect for RAG pipelines, database tools, or any CLI that benefits from persistent connections and cached state.
|
|
6
11
|
|
|
7
12
|
## Features
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thor-interactive
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Petersen
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: thor
|
|
@@ -53,6 +52,7 @@ files:
|
|
|
53
52
|
- LICENSE.txt
|
|
54
53
|
- README.md
|
|
55
54
|
- Rakefile
|
|
55
|
+
- docs/assets/screenshot.png
|
|
56
56
|
- docs/assets/thor-interactive-wide.png
|
|
57
57
|
- docs/assets/thor-interactive.png
|
|
58
58
|
- examples/README.md
|
|
@@ -87,7 +87,6 @@ metadata:
|
|
|
87
87
|
homepage_uri: https://github.com/scientist-labs/thor-interactive
|
|
88
88
|
source_code_uri: https://github.com/scientist-labs/thor-interactive
|
|
89
89
|
changelog_uri: https://github.com/scientist-labs/thor-interactive/blob/main/CHANGELOG.md
|
|
90
|
-
post_install_message:
|
|
91
90
|
rdoc_options: []
|
|
92
91
|
require_paths:
|
|
93
92
|
- lib
|
|
@@ -102,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
101
|
- !ruby/object:Gem::Version
|
|
103
102
|
version: '0'
|
|
104
103
|
requirements: []
|
|
105
|
-
rubygems_version: 3.
|
|
106
|
-
signing_key:
|
|
104
|
+
rubygems_version: 3.6.9
|
|
107
105
|
specification_version: 4
|
|
108
106
|
summary: Turn any Thor CLI into an interactive REPL with persistent state and auto-completion
|
|
109
107
|
test_files: []
|