microsandbox-cloud 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 +7 -0
- data/README.md +28 -0
- data/lib/microsandbox/cloud/version.rb +7 -0
- data/lib/microsandbox/cloud.rb +17 -0
- metadata +47 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 47b5d7b29d1a874c327790fa8dd3bc3ffbee7f58ec40b2b49fe913bec07e94c8
|
|
4
|
+
data.tar.gz: c9ff6d3a75c632e9f59713e5d5a9998412d44b53ff277b5fd9d8394ec74d0041
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 183ceb3bb0a0bffb5e323e823e7e19446d39537ad207e80af443b3adc3e70f235adea40b9a045a8417a93311ee0a035e87059dbb49679f9a1b6357010c236d2d
|
|
7
|
+
data.tar.gz: 8a5951bfaeccb1ec2b838f674004e9d7d50037c6633e5ada9c2464eddc6c2eff0ffc366b26dbdfa7d0d9e96c34206b5fd0fad55f4d0e2a91589ca07c04a82ee1
|
data/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# microsandbox-cloud
|
|
2
|
+
|
|
3
|
+
`microsandbox-cloud` is a placeholder gem for future Microsandbox Cloud Ruby integration work.
|
|
4
|
+
|
|
5
|
+
RubyGems does not have Python-style extras like `microsandbox[cloud]`. Ruby projects usually model optional integrations as separate gems, so this package reserves the `microsandbox-cloud` namespace for the Microsandbox project.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
gem install microsandbox-cloud
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require "microsandbox/cloud"
|
|
17
|
+
|
|
18
|
+
Microsandbox::Cloud.hello
|
|
19
|
+
#=> "hello from microsandbox-cloud"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Status
|
|
23
|
+
|
|
24
|
+
This package does not currently provide Microsandbox Cloud API bindings. Future versions may use this namespace for cloud-specific Ruby SDK functionality.
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
Apache-2.0
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "cloud/version"
|
|
4
|
+
|
|
5
|
+
module Microsandbox
|
|
6
|
+
module Cloud
|
|
7
|
+
class Error < StandardError; end
|
|
8
|
+
|
|
9
|
+
module_function
|
|
10
|
+
|
|
11
|
+
# Provide a tiny smoke-test API while keeping the placeholder honest about
|
|
12
|
+
# not shipping cloud client behavior yet.
|
|
13
|
+
def hello
|
|
14
|
+
"hello from microsandbox-cloud"
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: microsandbox-cloud
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Stephen Akinyemi
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: A tiny placeholder gem that reserves the microsandbox-cloud namespace
|
|
13
|
+
for future Microsandbox Cloud Ruby integration work.
|
|
14
|
+
email:
|
|
15
|
+
- appcypher@outlook.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.md
|
|
21
|
+
- lib/microsandbox/cloud.rb
|
|
22
|
+
- lib/microsandbox/cloud/version.rb
|
|
23
|
+
homepage: https://github.com/microsandbox/microsandbox
|
|
24
|
+
licenses:
|
|
25
|
+
- Apache-2.0
|
|
26
|
+
metadata:
|
|
27
|
+
homepage_uri: https://github.com/microsandbox/microsandbox
|
|
28
|
+
source_code_uri: https://github.com/microsandbox/microsandbox
|
|
29
|
+
rubygems_mfa_required: 'true'
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '2.6'
|
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '3.0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubygems_version: 4.0.8
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: Placeholder package for future Microsandbox Cloud Ruby integration.
|
|
47
|
+
test_files: []
|