know 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/AUTHORS +1 -0
  3. data/CHANGES.md +10 -0
  4. data/README.md +23 -0
  5. data/UNLICENSE +24 -0
  6. data/VERSION +1 -0
  7. data/lib/know.rb +1 -0
  8. metadata +53 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 02cacd28bc3868d7de33c04977e60bd07eec81065c8d0a4d4d405a4aa1174050
4
+ data.tar.gz: babfe69fbeafd005de8242f2c9f7b036ed933ea366ba973b1483a0ae2a9b02a2
5
+ SHA512:
6
+ metadata.gz: 6f9e43b6de41d4bdf393f2b3a83e6565393dab2c5cf4deef7b59c10a9a7613d46c57a29e874caf0cd6417838cee3b853644a796c7ade425aba4d8cfa68ee0429
7
+ data.tar.gz: 2f821818364b079eeb8e35a7ae73a3c35c5ac4047f64aebb63dd775be4257f0cb068a4f5e04c2dfd64363765eb104bdba82c821ea551958e6e0b405d98cbb6ab
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ * Arto Bendiken <arto@haltia.ai>
data/CHANGES.md ADDED
@@ -0,0 +1,10 @@
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](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## 0.0.1 - 2024-01-14
9
+
10
+ ## 0.0.0 - 2024-01-12
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Know.rb: The Know Framework for Ruby
2
+
3
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
4
+ [![Compatibility](https://img.shields.io/badge/ruby-2.6%2B-blue)](https://rubygems.org/gems/know)
5
+ [![Package](https://img.shields.io/gem/v/know)](https://rubygems.org/gems/know)
6
+
7
+ ## Prerequisites
8
+
9
+ - [Ruby](https://ruby-lang.org) 2.6+
10
+
11
+ ## Installation
12
+
13
+ ```shell
14
+ $ gem install know
15
+ ```
16
+
17
+ ## Examples
18
+
19
+ ### Importing the library
20
+
21
+ ```ruby
22
+ require 'know'
23
+ ```
data/UNLICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org/>
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/lib/know.rb ADDED
@@ -0,0 +1 @@
1
+ # This is free and unencumbered software released into the public domain.
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: know
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Haltia.AI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-01-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: ''
14
+ email: support@haltia.ai
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - AUTHORS
20
+ - CHANGES.md
21
+ - README.md
22
+ - UNLICENSE
23
+ - VERSION
24
+ - lib/know.rb
25
+ homepage: https://know.dev
26
+ licenses:
27
+ - Unlicense
28
+ metadata:
29
+ bug_tracker_uri: https://github.com/HaltiaAI/know.rb/issues
30
+ changelog_uri: https://github.com/HaltiaAI/know.rb/blob/master/CHANGES.md
31
+ documentation_uri: https://github.com/HaltiaAI/know.rb/blob/master/README.md
32
+ homepage_uri: https://know.dev
33
+ source_code_uri: https://github.com/HaltiaAI/know.rb
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '2.6'
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.0.3.1
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: The Know Framework for Ruby
53
+ test_files: []