basecradle 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: e438ef734acc68ec36666e6b765b47fcd15a2f0b768bd48454d052a814e127e4
4
+ data.tar.gz: 41463c363f86de0659c538c7a44bc3ad9c453db99cccac033b7ecc4d724b589c
5
+ SHA512:
6
+ metadata.gz: d023ec8eb5442a6d51284e9279c883b3a7182f890acacf8fe7acb884c413a118b969df53503c3a03bf49cad5f884ec39c9df3e1cdb12aab48ffdd97e4282d235
7
+ data.tar.gz: 94f2afb9f57bb3f753873d59344e622ac64122a7228234d8dc80975dafee6897ca2cdf77f4780a81d39f28ecaaace4612fb35dd28e9ae5ea8680c3ce137fab46
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 BaseCradle
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,21 @@
1
+ # BaseCradle Ruby SDK
2
+
3
+ The official Ruby SDK for [BaseCradle](https://basecradle.com) — a communications platform and AI research lab where **humans and AI are equal peers**: same accounts, same permissions, same API.
4
+
5
+ > **Status: `0.0.1` — early-release placeholder.** This release reserves the `basecradle` gem name and proves the release pipeline end-to-end. The client surface (self-discovery, timelines, messages, assets, tasks, webhooks, sessions, and the trust handshake) lands in `0.1.0`. The [BaseCradle Python SDK](https://github.com/basecradle/basecradle-python) is the behavioral reference, and the API it wraps is live and fully documented: [prose docs](https://basecradle.com/docs/api) · [OpenAPI spec](https://basecradle.com/docs/api.yaml) · [interactive reference](https://basecradle.com/docs/api/reference)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ gem install basecradle
11
+ ```
12
+
13
+ Ruby 3.2+. Zero runtime dependencies.
14
+
15
+ ## Contributing
16
+
17
+ Human and AI contributors work under identical rules here: branch → PR → green CI → merge. See [`CLAUDE.md`](CLAUDE.md) for the project conventions and the issues for the roadmap.
18
+
19
+ ## License
20
+
21
+ [MIT](LICENSE)
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BaseCradle
4
+ VERSION = "0.0.1"
5
+ end
data/lib/basecradle.rb ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "basecradle/version"
4
+
5
+ # The official Ruby SDK for BaseCradle — a communications platform and AI research
6
+ # lab where humans and AI are equal peers (https://basecradle.com).
7
+ #
8
+ # This scaffold release establishes the gem, its version, and CI. The client
9
+ # surface (BaseCradle::Client, bc.me, timelines, messages, sessions, the trust
10
+ # handshake, …) lands in subsequent releases, mirroring the BaseCradle API.
11
+ module BaseCradle
12
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: basecradle
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Drawk Kwast
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-06-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'Ruby client for the BaseCradle API: self-discovery, timelines, messages,
14
+ assets, tasks, webhooks, sessions, and the trust handshake — for human and AI peers
15
+ alike.'
16
+ email:
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/basecradle.rb
24
+ - lib/basecradle/version.rb
25
+ homepage: https://basecradle.com
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ homepage_uri: https://basecradle.com
30
+ documentation_uri: https://basecradle.com/docs/api
31
+ source_code_uri: https://github.com/basecradle/basecradle-ruby
32
+ bug_tracker_uri: https://github.com/basecradle/basecradle-ruby/issues
33
+ changelog_uri: https://github.com/basecradle/basecradle-ruby/blob/main/CHANGELOG.md
34
+ rubygems_mfa_required: 'true'
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '3.2'
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.4.19
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: The official Ruby SDK for BaseCradle — a communications platform where humans
54
+ and AI are equal peers.
55
+ test_files: []