comprehendo 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d31f8b3a3d807aa46a475b0704d2418d9d43d0957ba38f74fb88a7cbfdbb625e
4
+ data.tar.gz: 836e4db2a063633942a048d17d3d3353f5d1fa9fbfb2abf07dfb57b87f3d2d22
5
+ SHA512:
6
+ metadata.gz: b860c34a34749f206d73dd9c143a8e4325bbefcc46a8c220a8ad35628ce228b9c6407e9864439a0456fe7485e5c103016fb8b5ad03f7fe7299b3960abd42e10a
7
+ data.tar.gz: d5f31d40dfc16218f8262b35ab6102a67edcabb546f085f26c87bc122faa6a800bebd0e5bda61f47ea7dfe6b5a8a7a6541f01809dabe54c4073892bd90cc63f5
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 TheDecipherist
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # comprehendo
2
+
3
+ Placeholder gem — reserving the `comprehendo` name on RubyGems. Real functionality coming later.
4
+
5
+ ## Install
6
+
7
+ ```sh
8
+ gem install comprehendo
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ruby
14
+ require "comprehendo"
15
+
16
+ Comprehendo.comprehendo # "comprehendo"
17
+ ```
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Comprehendo
4
+ VERSION = "0.0.1"
5
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "comprehendo/version"
4
+
5
+ # comprehendo — placeholder gem.
6
+ # This is a minimal, reserved-name gem. Real functionality coming later.
7
+ module Comprehendo
8
+ def self.comprehendo
9
+ "comprehendo"
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: comprehendo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - TheDecipherist
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Placeholder gem reserving the comprehendo name. Real functionality coming
14
+ later.
15
+ email:
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - lib/comprehendo.rb
23
+ - lib/comprehendo/version.rb
24
+ homepage: https://github.com/TheDecipherist/comprehendo
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/TheDecipherist/comprehendo
29
+ source_code_uri: https://github.com/TheDecipherist/comprehendo
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 2.7.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.3.5
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Placeholder package for comprehendo
49
+ test_files: []