microsandbox-binaries 0.1.0

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: 152c21f075f343d4b200a2f90a817ca9e0270eebbeb3b190ff9558986cf7b60d
4
+ data.tar.gz: 99416d2996734aacc5e12ae405cb270116d41745e35eb419d907b62071f053e6
5
+ SHA512:
6
+ metadata.gz: '06432018492dd19816d9e46846fb6bc7f4201cb7eac912ff81481d87926154b273d2c8cfc6ed09219066b4090f30594a1ee91cc17f178b1d644108637d061f11'
7
+ data.tar.gz: 8fead7673e83c0df03b7a715e637f9299768225546520419bb5dd43df98441b008ff9a0d934711bba371243af262b4e22a175d3b959447ecb43fc51bc810a20c
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # microsandbox-binaries
2
+
3
+ `microsandbox-binaries` is a placeholder gem for future Microsandbox binary distribution work.
4
+
5
+ The gem is intentionally tiny today. It reserves the RubyGems package name for the Microsandbox project and exposes version metadata so downstream automation can detect the package without depending on native binaries yet.
6
+
7
+ ## Installation
8
+
9
+ ```sh
10
+ gem install microsandbox-binaries
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```ruby
16
+ require "microsandbox/binaries"
17
+
18
+ Microsandbox::Binaries.hello
19
+ #=> "hello from microsandbox-binaries"
20
+ ```
21
+
22
+ ## Status
23
+
24
+ This package does not currently ship Microsandbox runtime binaries. Future versions may use this namespace for platform-specific binary packaging.
25
+
26
+ ## License
27
+
28
+ Apache-2.0
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Microsandbox
4
+ module Binaries
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "binaries/version"
4
+
5
+ module Microsandbox
6
+ module Binaries
7
+ class Error < StandardError; end
8
+
9
+ module_function
10
+
11
+ # Keep a tiny callable API so the namespace is useful in smoke tests without
12
+ # pretending this package already installs Microsandbox runtime binaries.
13
+ def hello
14
+ "hello from microsandbox-binaries"
15
+ end
16
+ end
17
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: microsandbox-binaries
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Stephen Akinyemi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A tiny placeholder gem that reserves the microsandbox-binaries namespace
14
+ for future Microsandbox binary distribution work.
15
+ email:
16
+ - appcypher@outlook.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - lib/microsandbox/binaries.rb
23
+ - lib/microsandbox/binaries/version.rb
24
+ homepage: https://github.com/microsandbox/microsandbox
25
+ licenses:
26
+ - Apache-2.0
27
+ metadata:
28
+ homepage_uri: https://github.com/microsandbox/microsandbox
29
+ source_code_uri: https://github.com/microsandbox/microsandbox
30
+ rubygems_mfa_required: 'true'
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '2.6'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '3.0'
45
+ requirements: []
46
+ rubygems_version: 3.0.3.1
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Placeholder package for future Microsandbox binary distribution.
50
+ test_files: []