asimov.rb 24.0.0.dev.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 32a4a65bb80742243bf8deaabcab612a949c72bc75d3aaafa4faed50c1aa6b04
4
+ data.tar.gz: 0ca87369719982f3577ca06975a16745c4ef84fc7a325a12e08b2562a26473c3
5
+ SHA512:
6
+ metadata.gz: 4eae9360ddebb65236692cd90e303e62f85d6223e5fd415005507246d3d0307a9a65d528288f2a517c27a5b67b722022369cf81dccd9da60b7b369427a76ec7c
7
+ data.tar.gz: 2f5bd780c07b8dd0db6928498ae71a8fe20a1349ec800b1929b1108f6557f7f0556778acf3e0cba5d7b0d27b5c110434c071a4967d268de46a6438cf7a3c45a0
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ * Arto Bendiken <arto@asimov.so>
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
+ ## 24.0.0.dev.0 - 2024-06-26
data/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # Asimov Software Development Kit (SDK) 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/asimov.rb)
5
+ [![Package](https://img.shields.io/gem/v/asimov.rb)](https://rubygems.org/gems/asimov.rb)
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
+ (included in macOS 12.6+)
13
+
14
+ ## ⬇️ Installation
15
+
16
+ ### Installation via RubyGems
17
+
18
+ ```console
19
+ $ gem install asimov.rb
20
+ ```
21
+
22
+ ## 👉 Examples
23
+
24
+ ### Importing the SDK
25
+
26
+ ```ruby
27
+ require 'asimov'
28
+ ```
29
+
30
+ ### Initializing the SDK
31
+
32
+ ```ruby
33
+ # TODO
34
+ ```
35
+
36
+ ### Examining SDK metadata
37
+
38
+ ```ruby
39
+ # TODO
40
+ ```
41
+
42
+ ## 👨‍💻 Development
43
+
44
+ ```console
45
+ $ git clone https://github.com/AsimovPlatform/asimov.rb.git
46
+ ```
47
+
48
+ - - -
49
+
50
+ [![Share on Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?logo=twitter)](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.rb&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Ruby)
51
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.rb&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Ruby)
52
+ [![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/AsimovPlatform/asimov.rb&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Ruby)
53
+ [![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/AsimovPlatform/asimov.rb)
54
+ [![Share on LinkedIn](https://img.shields.io/badge/share%20on-linkedin-3949AB?logo=linkedin)](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/AsimovPlatform/asimov.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
+ 24.0.0.dev.0
data/lib/asimov/sdk.rb ADDED
@@ -0,0 +1,9 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ module Asimov; module SDK; end; end
4
+
5
+ ##
6
+ # The Asimov Software Development Kit (SDK) for Ruby.
7
+ module Asimov::SDK
8
+ # TODO
9
+ end # Asimov::SDK
data/lib/asimov.rb ADDED
@@ -0,0 +1,3 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ require 'asimov/sdk'
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: asimov.rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 24.0.0.dev.0
5
+ platform: ruby
6
+ authors:
7
+ - Asimov AI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-06-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '3.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: yard
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: know
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: ''
70
+ email: support@asimov.so
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - AUTHORS
76
+ - CHANGES.md
77
+ - README.md
78
+ - UNLICENSE
79
+ - VERSION
80
+ - lib/asimov.rb
81
+ - lib/asimov/sdk.rb
82
+ homepage: https://sdk.asimov.so
83
+ licenses:
84
+ - Unlicense
85
+ metadata:
86
+ bug_tracker_uri: https://github.com/AsimovPlatform/asimov.rb/issues
87
+ changelog_uri: https://github.com/AsimovPlatform/asimov.rb/blob/master/CHANGES.md
88
+ documentation_uri: https://github.com/AsimovPlatform/asimov.rb/blob/master/README.md
89
+ homepage_uri: https://sdk.asimov.so
90
+ source_code_uri: https://github.com/AsimovPlatform/asimov.rb
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '2.6'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubygems_version: 3.5.11
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Asimov Software Development Kit (SDK) for Ruby
110
+ test_files: []