lath 0.0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/lath.gemspec +27 -0
  3. data/lib/lath.rb +8 -0
  4. metadata +50 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 90322a39eafecb93b18b7da54325c2a977058057329908bc86b5f1c33cff3150
4
+ data.tar.gz: 41e9d57092cce445cc595d549db614f5aa5e25886e4a9ddbca6bd0adb4cdc4eb
5
+ SHA512:
6
+ metadata.gz: 69113d2e9261a1bb6b5026f20ce21508c1cc978492534b39a09d8056d5173b989556cd7ed40d77fd9e10561287b1e3b0a54ac018d4ec5e95b83ab26d5b7ca258
7
+ data.tar.gz: f9764f136b6fa11ffd0f37711be516c8513948f07f93a352c093d71b3e01c73fb1a80b32d9a2e31cbc2e1010eb591dd6cf41e4b6fb06462b3cccde375e00367f
data/lath.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "lath"
3
+ spec.version = "0.0.0"
4
+ spec.authors = ["Luiz Garcia"]
5
+ spec.email = ["luizcg@gmail.com"]
6
+
7
+ spec.summary = "A retained-mode, reactive terminal UI framework for Ruby."
8
+ spec.description = <<~DESC
9
+ Lath is a retained-mode, reactive terminal UI framework for Ruby. Components
10
+ declare the interface as a function of state; a reconciler diffs the component
11
+ tree and a cell-buffer diff repaints only what changed. Pure Ruby — no Rust
12
+ toolchain, no ncurses.
13
+
14
+ This is a 0.0.0 placeholder reserving the name. No API yet.
15
+ DESC
16
+
17
+ spec.homepage = "https://github.com/luizcg/lath"
18
+ spec.license = "MIT"
19
+
20
+ spec.required_ruby_version = ">= 3.3"
21
+
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = spec.homepage
24
+
25
+ spec.files = ["lib/lath.rb", "lath.gemspec"]
26
+ spec.require_paths = ["lib"]
27
+ end
data/lib/lath.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Lath — a retained-mode, reactive terminal UI framework for Ruby.
4
+ #
5
+ # This release is a 0.0.0 placeholder reserving the gem name. There is no API yet.
6
+ module Lath
7
+ VERSION = "0.0.0"
8
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lath
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Luiz Garcia
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |
13
+ Lath is a retained-mode, reactive terminal UI framework for Ruby. Components
14
+ declare the interface as a function of state; a reconciler diffs the component
15
+ tree and a cell-buffer diff repaints only what changed. Pure Ruby — no Rust
16
+ toolchain, no ncurses.
17
+
18
+ This is a 0.0.0 placeholder reserving the name. No API yet.
19
+ email:
20
+ - luizcg@gmail.com
21
+ executables: []
22
+ extensions: []
23
+ extra_rdoc_files: []
24
+ files:
25
+ - lath.gemspec
26
+ - lib/lath.rb
27
+ homepage: https://github.com/luizcg/lath
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: https://github.com/luizcg/lath
32
+ source_code_uri: https://github.com/luizcg/lath
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.3'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.7.2
48
+ specification_version: 4
49
+ summary: A retained-mode, reactive terminal UI framework for Ruby.
50
+ test_files: []