knf 0.0.0

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 +8 -0
  4. data/README.md +40 -0
  5. data/UNLICENSE +24 -0
  6. data/VERSION +1 -0
  7. data/lib/knf.rb +1 -0
  8. metadata +53 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ea8c2cb7324c83ac165750923e82a551a8b3aca4074a2af297650c4f1924bce6
4
+ data.tar.gz: bcec911181e78f945fb5a937cfa504e215d3bd349572f2b226205342e7a054c1
5
+ SHA512:
6
+ metadata.gz: 3b24d270bde2d9ff82a184e908fc00269aaec536be55caa025a456fb5d3a3ded5ff342c845592051d0a14e8b39e46f244bb80baa8cf6f5bb381ee3fa1272751e
7
+ data.tar.gz: 6a524d9516f72a2bc206252f347433cfcc71e4d8d495056d884dd11787f22ad918fd59939a2c0c5d10e21caf7822c2dc7f044a120f76d29aff26f47f05df1144
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ * Arto Bendiken <arto@haltia.ai>
data/CHANGES.md ADDED
@@ -0,0 +1,8 @@
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.0 - 2024-04-21
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # KNF.rb: KNF 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/knf)
5
+ [![Package](https://img.shields.io/gem/v/knf)](https://rubygems.org/gems/knf)
6
+
7
+ 🚧 _We are building in public. This is presently under heavy construction._
8
+
9
+ ## 🛠️ Prerequisites
10
+
11
+ - [Ruby](https://ruby-lang.org) 2.6+
12
+
13
+ ## ⬇️ Installation
14
+
15
+ ### Installation via RubyGems
16
+
17
+ ```console
18
+ $ gem install knf
19
+ ```
20
+
21
+ ## 👉 Examples
22
+
23
+ ### Importing the library
24
+
25
+ ```ruby
26
+ require 'knf'
27
+ ```
28
+
29
+ ## 👨‍💻 Development
30
+
31
+ ```console
32
+ $ git clone https://github.com/HaltiaAI/knf.rb.git
33
+ ```
34
+
35
+ - - -
36
+
37
+ [![Share on Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?logo=twitter)](https://twitter.com/share?url=https://github.com/HaltiaAI/knf.rb&text=KNF%20for%20Ruby)
38
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/HaltiaAI/knf.rb&title=KNF%20for%20Ruby)
39
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hacker%20news-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/HaltiaAI/knf.rb&t=KNF%20for%20Ruby)
40
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-facebook-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/HaltiaAI/knf.rb)
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.0
data/lib/knf.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: knf
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Haltia.AI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-04-21 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/knf.rb
25
+ homepage: https://knf.dev
26
+ licenses:
27
+ - Unlicense
28
+ metadata:
29
+ bug_tracker_uri: https://github.com/HaltiaAI/knf.rb/issues
30
+ changelog_uri: https://github.com/HaltiaAI/knf.rb/blob/master/CHANGES.md
31
+ documentation_uri: https://github.com/HaltiaAI/knf.rb/blob/master/README.md
32
+ homepage_uri: https://knf.dev
33
+ source_code_uri: https://github.com/HaltiaAI/knf.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: KNF for Ruby
53
+ test_files: []