rufio 0.60.0 → 0.62.0
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 +56 -0
- data/README.md +221 -590
- data/README_ja.md +331 -0
- data/examples/bookmarks.yml +14 -0
- data/examples/config.rb +68 -0
- data/examples/script_paths.yml +11 -0
- data/lib/rufio/application.rb +1 -1
- data/lib/rufio/bookmark.rb +6 -30
- data/lib/rufio/bookmark_manager.rb +15 -1
- data/lib/rufio/bookmark_storage.rb +149 -0
- data/lib/rufio/command_mode.rb +4 -4
- data/lib/rufio/command_mode_ui.rb +8 -8
- data/lib/rufio/config.rb +268 -54
- data/lib/rufio/config_loader.rb +149 -26
- data/lib/rufio/keybind_handler.rb +14 -9
- data/lib/rufio/script_config_loader.rb +27 -12
- data/lib/rufio/script_path_manager.rb +50 -89
- data/lib/rufio/terminal_ui.rb +2 -2
- data/lib/rufio/version.rb +1 -1
- data/lib/rufio.rb +1 -0
- metadata +10 -17
- data/README_EN.md +0 -610
- data/config_example.rb +0 -88
- data/examples/config.yml +0 -8
- data/scripts/test_jobs/build_simulation.sh +0 -29
- data/scripts/test_jobs/deploy_simulation.sh +0 -37
- data/scripts/test_jobs/quick.sh +0 -11
- data/scripts/test_jobs/random_result.sh +0 -23
- data/scripts/test_jobs/slow_fail.sh +0 -10
- data/scripts/test_jobs/slow_success.sh +0 -10
- data/scripts/test_jobs/very_slow.sh +0 -19
- data/test_delete/test1.txt +0 -1
- data/test_delete/test2.txt +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2db20061e61dc6e74d9a106ca35f66e2f20f0d3dfd5394664823a03ddc8b029d
|
|
4
|
+
data.tar.gz: caaf0e05574780ca8dc4c86afae1c617e584ae8b56f3654e1744541127172a66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21484e20e462d20f1cd4a547e3516bd80ad986fe810724c0c2f9300504ebc3c04ac512fdee457a7f839c9f8d04bf375df337896399fdfff047cd48faa7eaf6f2
|
|
7
|
+
data.tar.gz: 7845c80320bcd88d0540ee2aa38603ad1f9b45ee88f533586d9a5e7fe53b51bff919ff9359fb725873fc430938c49b143498ae7a55fb4f9dd832a99c2a93febe
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,62 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.62.0] - 2026-01-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Configuration File Structure Overhaul**: Separated configuration into multiple files
|
|
14
|
+
- `~/.config/rufio/config.rb` - DSL-style main configuration (colors, keybinds, language)
|
|
15
|
+
- `~/.config/rufio/script_paths.yml` - Script directories (list format)
|
|
16
|
+
- `~/.config/rufio/bookmarks.yml` - Bookmarks (list format)
|
|
17
|
+
- Old `config.yml` format still supported for backward compatibility
|
|
18
|
+
- **Config Class Refactoring**: Centralized YAML configuration management
|
|
19
|
+
- All YAML read/write operations now go through `Config` class
|
|
20
|
+
- Added `load_script_paths`, `save_script_paths`, `add_script_path`, `remove_script_path`
|
|
21
|
+
- Added `load_bookmarks_from_yml`, `save_bookmarks_to_yml`, `add_bookmark`, `remove_bookmark`
|
|
22
|
+
- Added `load_config_rb` for DSL configuration loading
|
|
23
|
+
- Added `migrate_from_config_yml` for migration from old format
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
- **Bookmark Menu**: Fixed "View bookmarks" option (key `4`) not working in bookmark menu (`B` key)
|
|
27
|
+
|
|
28
|
+
### Deprecated
|
|
29
|
+
- **bookmark.json**: JSON bookmark format is deprecated, use `bookmarks.yml` instead
|
|
30
|
+
- **config.yml**: Single config file format is deprecated, use separate files instead
|
|
31
|
+
|
|
32
|
+
### Technical Details
|
|
33
|
+
- **New Constants in Config**:
|
|
34
|
+
- `CONFIG_DIR`, `CONFIG_RB_PATH`, `SCRIPT_PATHS_YML`, `BOOKMARKS_YML`
|
|
35
|
+
- **Backward Compatibility**:
|
|
36
|
+
- `YamlBookmarkStorage` supports both new (list format) and old (section format)
|
|
37
|
+
- `ScriptPathManager` supports both `script_paths.yml` and legacy `config.yml`
|
|
38
|
+
- **New Example Files**: Added `examples/config.rb`, `examples/script_paths.yml`, `examples/bookmarks.yml`
|
|
39
|
+
|
|
40
|
+
## [0.61.0] - 2026-01-25
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
- **🎯 Rebranding**: Redefined rufio as "Runtime Unified Flow I/O Operator"
|
|
44
|
+
- Emphasized the concept as a "tool runtime environment" rather than just a file manager
|
|
45
|
+
- Updated gemspec summary and description to reflect new concept
|
|
46
|
+
- **📖 README.md Overhaul**: Restructured for clarity with the new concept
|
|
47
|
+
- Organized features around tool runtime and file manager axes
|
|
48
|
+
- Simplified keybinding tables by category
|
|
49
|
+
- Added Quick Start section
|
|
50
|
+
- **🌐 Unified English UI Messages**: Standardized all UI messages to English
|
|
51
|
+
- Converted command mode, result display, and completion candidate messages to English
|
|
52
|
+
- Japanese setting now displays English messages (internal language setting preserved)
|
|
53
|
+
|
|
54
|
+
### Added
|
|
55
|
+
- **💾 Bookmark Storage Abstraction**: Introduced `BookmarkStorage` interface
|
|
56
|
+
- `JsonBookmarkStorage`: Legacy JSON file format
|
|
57
|
+
- `YamlBookmarkStorage`: New YAML file format (integrated into config.yml)
|
|
58
|
+
- `BookmarkMigrator`: Automatic migration from JSON to YAML
|
|
59
|
+
- Support for storage dependency injection (improved testability)
|
|
60
|
+
|
|
61
|
+
### Technical Details
|
|
62
|
+
- **New Files**: `lib/rufio/bookmark_storage.rb`, `test/test_bookmark_storage.rb`
|
|
63
|
+
- **Affected Files**: `bookmark.rb`, `bookmark_manager.rb`, `config_loader.rb`, `command_mode.rb`, `command_mode_ui.rb`, `terminal_ui.rb`, `config.rb`
|
|
64
|
+
- **Test Updates**: Modified test cases to match English messages
|
|
65
|
+
|
|
10
66
|
## [0.60.0] - 2026-01-24
|
|
11
67
|
|
|
12
68
|
### Added
|