koshi 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (8) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +9 -0
  3. data/CHANGELOG.md +18 -0
  4. data/LICENSE +21 -0
  5. data/README.md +33 -0
  6. data/lib/koshi.rb +18 -0
  7. data/sig/koshi.rbs +18 -0
  8. metadata +53 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 723d5f7b0eed0bd877f82a9c566948c8b52eb8ba56ff282a0a9a48f0c62bc175
4
+ data.tar.gz: 445e2217148e48ab1693bd55417751dd8ee96c6b694a2cfeaa3048d1a71dae8b
5
+ SHA512:
6
+ metadata.gz: ebdcaea7cf37426efd5576c1023d55ab27dd90e44ae05fdef68affd68db4e2120694f7b888b8ca86bc43ede92de7dd205705ac8af768603cd09edf73625ca941
7
+ data.tar.gz: ef523211a7e3a652210b8fa7f50dadaa5575b7b2db2708ff51c647e2da429c25006d738f39078035c87627890863a3dde8bc3c4bfc63be6bd9cb94b2266a89d3
data/.yardopts ADDED
@@ -0,0 +1,9 @@
1
+ lib/**/*.rb
2
+ --title Koshi
3
+ --readme README.md
4
+ --no-private
5
+ --protected
6
+ --markup markdown
7
+ --markup-provider redcarpet
8
+ --embed-mixins
9
+ --files LICENSE
data/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog], and this project adheres to [Break Versioning].
6
+
7
+ ## [Unreleased]
8
+
9
+ ## 0.0.1 - 2025-01-16
10
+
11
+ * initial release
12
+
13
+ [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
14
+ [Break Versioning]: https://www.taoensso.com/break-versioning
15
+
16
+ <!-- versions -->
17
+
18
+ [Unreleased]: https://github.com/aaronmallen/koshi/compare/0.0.1...HEAD
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Aaron Allen
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,33 @@
1
+ # Koshi
2
+
3
+ [![Koshi Version](https://img.shields.io/gem/v/koshi?style=for-the-badge&logo=rubygems&logoColor=white&logoSize=auto&label=Gem%20Version)](https://rubygems.org/gems/koshi)
4
+ [![Koshi License](https://img.shields.io/github/license/aaronmallen/koshi?style=for-the-badge&logo=opensourceinitiative&logoColor=white&logoSize=auto)](./LICENSE)
5
+ [![Koshi Docs](https://img.shields.io/badge/rubydoc-blue?style=for-the-badge&logo=readthedocs&logoColor=white&logoSize=auto&label=docs)](https://rubydoc.info/gems/koshi/0.0.1)
6
+ [![Koshi Open Issues](https://img.shields.io/github/issues-search/aaronmallen/koshi?query=state%3Aopen&style=for-the-badge&logo=github&logoColor=white&logoSize=auto&label=issues&color=red)](https://github.com/aaronmallen/koshi/issues?q=state%3Aopen%20)
7
+
8
+ > [!WARNING]
9
+ > Koshi is currently in development and is not yet ready for use. Please check back soon for updates.
10
+
11
+ An elegant grid framework for crafting sophisticated CLI layouts
12
+
13
+ Kōshi (格子) - meaning 'lattice' or 'grid' in Japanese - is a powerful and intuitive framework for creating sophisticated
14
+ layouts in command-line applications. Drawing inspiration from traditional Japanese architectural patterns, Kōshi brings
15
+ structure and harmony to terminal interfaces through its elegant grid system.
16
+
17
+ Kōshi empowers developers to create beautiful, organized CLI applications that maintain visual harmony while providing
18
+ powerful layout capabilities. Like its architectural namesake, it combines simplicity and sophistication to bring
19
+ structure to your terminal interfaces.
20
+
21
+ ## Installation
22
+
23
+ Add this line to your application's Gemfile:
24
+
25
+ ```ruby
26
+ gem 'koshi'
27
+ ```
28
+
29
+ or install it yourself as:
30
+
31
+ ```bash
32
+ gem install koshi
33
+ ```
data/lib/koshi.rb ADDED
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ # An elegant grid framework for crafting sophisticated CLI layouts
4
+ #
5
+ # Kōshi (格子) - meaning 'lattice' or 'grid' in Japanese - is a powerful and intuitive framework for creating
6
+ # sophisticated layouts in command-line applications. Drawing inspiration from traditional Japanese architectural
7
+ # patterns, Kōshi brings structure and harmony to terminal interfaces through its elegant grid system
8
+ #
9
+ # Kōshi empowers developers to create beautiful, organized CLI applications that maintain visual harmony while providing
10
+ # powerful layout capabilities. Like its architectural namesake, it combines simplicity and sophistication to bring
11
+ # structure to your terminal interfaces
12
+ #
13
+ # @author {https://aaronmallen.me Aaron Allen}
14
+ # @since unreleased
15
+ #
16
+ # @api public
17
+ module Koshi
18
+ end
data/sig/koshi.rbs ADDED
@@ -0,0 +1,18 @@
1
+ # Generated from lib/koshi.rb with RBS::Inline
2
+
3
+ # An elegant grid framework for crafting sophisticated CLI layouts
4
+ #
5
+ # Kōshi (格子) - meaning 'lattice' or 'grid' in Japanese - is a powerful and intuitive framework for creating
6
+ # sophisticated layouts in command-line applications. Drawing inspiration from traditional Japanese architectural
7
+ # patterns, Kōshi brings structure and harmony to terminal interfaces through its elegant grid system
8
+ #
9
+ # Kōshi empowers developers to create beautiful, organized CLI applications that maintain visual harmony while providing
10
+ # powerful layout capabilities. Like its architectural namesake, it combines simplicity and sophistication to bring
11
+ # structure to your terminal interfaces
12
+ #
13
+ # @author {https://aaronmallen.me Aaron Allen}
14
+ # @since unreleased
15
+ #
16
+ # @api public
17
+ module Koshi
18
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: koshi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Allen
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-01-16 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |-
13
+ Kōshi (格子) - meaning 'lattice' or 'grid' in Japanese - is a powerful and intuitive framework for creating sophisticated layouts in command-line applications. Drawing inspiration from traditional Japanese architectural patterns, Kōshi brings structure and harmony to terminal interfaces through its elegant grid system.
14
+ Kōshi empowers developers to create beautiful, organized CLI applications that maintain visual harmony while providing powerful layout capabilities. Like its architectural namesake, it combines simplicity and sophistication to bring structure to your terminal interfaces.
15
+ email:
16
+ - hello@aaronmallen.me
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".yardopts"
22
+ - CHANGELOG.md
23
+ - LICENSE
24
+ - README.md
25
+ - lib/koshi.rb
26
+ - sig/koshi.rbs
27
+ homepage: https://github.com/aaronmallen/koshi
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ bug_tracker_uri: https://github.com/aaronmallen/koshi/issues
32
+ changelog_uri: https://github.com/aaronmallen/koshi/releases/tag/0.0.1
33
+ homepage_uri: https://github.com/aaronmallen/koshi
34
+ rubygems_mfa_required: 'true'
35
+ source_code_uri: https://github.com/aaronmallen/koshi/tree/0.0.1
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '3.1'
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.6.2
51
+ specification_version: 4
52
+ summary: An elegant grid framework for crafting sophisticated CLI layouts
53
+ test_files: []