mui 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f64c4815352bf9fcafa99092cea5126496eb9340f0e679b0408e70d59c248627
4
+ data.tar.gz: 160afb5b1c9891413852c76357470864d3d1a9d3621497f87695313d480ca934
5
+ SHA512:
6
+ metadata.gz: cfd12998c552ac377bfb8be5c1b208cc73fc6d5897639e39be6cb29ce67d964dd6dbd71604727578ecd755a930c1a66feff4c800142c513a900b76ad7d8eb20c
7
+ data.tar.gz: e09e98c9b835227152dc0ecfbf2d0207b5f5545bc300fbdd898fd0fdde79d5bb6906c113729e1a3dc7a1bbf12b467cd7a549cc5e19d04d948d3b94eb6f36885c
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-11-30
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 S-H-GAMELINKS
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # Mui (無為)
2
+
3
+ A Vim-like TUI text editor written in Ruby.
4
+
5
+ > **無為 (むい, mui)** - "Effortless action" from Taoist philosophy.
6
+ > *"Form without forcing, existing as it is. Yet from nothing, something is born."*
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ gem install mui
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```bash
17
+ mui [file]
18
+ ```
19
+
20
+ ## Features (Planned)
21
+
22
+ - Vim-like modal editing (Normal, Insert, Visual, Command modes)
23
+ - Plugin system via gems
24
+ - LSP support (via `mui-lsp` gem)
25
+ - Git integration (via `mui-git` gem)
26
+ - Configurable via `.muirc`
27
+
28
+ ## Development
29
+
30
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests.
31
+
32
+ ```bash
33
+ git clone https://github.com/S-H-GAMELINKS/mui.git
34
+ cd mui
35
+ bin/setup
36
+ rake test
37
+ ```
38
+
39
+ ## Contributing
40
+
41
+ Bug reports and pull requests are welcome on GitHub at https://github.com/S-H-GAMELINKS/mui.
42
+
43
+ ## License
44
+
45
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[test rubocop]
data/exe/mui ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "mui"
5
+
6
+ puts "Mui v#{Mui::VERSION} - A Vim-like TUI editor written in Ruby"
7
+ puts "Coming soon..."
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mui
4
+ VERSION = "0.1.0"
5
+ end
data/lib/mui.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "mui/version"
4
+
5
+ module Mui
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/mui.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Mui
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - S-H-GAMELINKS
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Mui (無為) is a Vim-like TUI text editor written in Ruby. Inspired by the
13
+ concept of 'wu wei' (effortless action), it aims to be a minimal yet extensible
14
+ editor.
15
+ email:
16
+ - gamelinks007@gmail.com
17
+ executables:
18
+ - mui
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - CHANGELOG.md
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - exe/mui
27
+ - lib/mui.rb
28
+ - lib/mui/version.rb
29
+ - sig/mui.rbs
30
+ homepage: https://github.com/S-H-GAMELINKS/mui
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ allowed_push_host: https://rubygems.org
35
+ homepage_uri: https://github.com/S-H-GAMELINKS/mui
36
+ source_code_uri: https://github.com/S-H-GAMELINKS/mui
37
+ changelog_uri: https://github.com/S-H-GAMELINKS/mui/blob/main/CHANGELOG.md
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.0
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 4.0.0.beta2
53
+ specification_version: 4
54
+ summary: Mui - A Vim-like TUI editor written in Ruby
55
+ test_files: []