0xfacet 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 +7 -0
- data/CHANGELOG.md +3 -0
- data/Manifest.txt +5 -0
- data/README.md +24 -0
- data/Rakefile +31 -0
- data/lib/0xfacet.rb +3 -0
- metadata +86 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 1ecd09bdb8535a192b95beb92d9aec5b645a8720da894fa8df8d9b12762f957d
|
|
4
|
+
data.tar.gz: dea9e1f25ccd197d33da9e4d298f98d8825c0be78de0cde31fe12484d4ec1d23
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 2ad585033238bdb6d2c484bc5cde74f590dd576d23a902e639e18d8688a69ce8b8dc59cbdfb95011781785c37656cb60eb7da31fef9ce9fddd4ee41858482cec
|
|
7
|
+
data.tar.gz: 6804270dee48c293d7469b5c4ca41295d6933ed0f8ade2bd2414acd808cba01114bbee6727a282457ec2daaa32712597da010c2b04f68b091b86b8e1fec80558
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# 0xFacet (Foundation)
|
|
2
|
+
|
|
3
|
+
0xfacet - facet vm base foundation
|
|
4
|
+
|
|
5
|
+
* home :: [github.com/s6ruby/rubidity.review](https://github.com/s6ruby/rubidity.review)
|
|
6
|
+
* bugs :: [github.com/s6ruby/rubidity.review/issues](https://github.com/s6ruby/rubidity/issues)
|
|
7
|
+
* gem :: [rubygems.org/gems/0xfacet](https://rubygems.org/gems/0xfacet)
|
|
8
|
+
* rdoc :: [rubydoc.info/gems/0xfacet](http://rubydoc.info/gems/0xfacet)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## About
|
|
13
|
+
|
|
14
|
+
What's happening herè?
|
|
15
|
+
|
|
16
|
+
The idea is to look at the facet vm code as-is (that is, NOT suggesting new or alternate syntax and semantics) in the review / commentary
|
|
17
|
+
and start to (re)package / modular-ize
|
|
18
|
+
code in "place holder" gems (waiting for adoption by the founders) such as 0xfacet and 0xfacet-typed and 0xfacet-rubidity.
|
|
19
|
+
|
|
20
|
+
See [Rubidity O.G. (Dumb Contracts) Public Code Review / (More) Tests / Gems & More »](https://github.com/s6ruby/rubidity.review)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
|
|
3
|
+
# require './lib/0xfacet/version.rb'
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Hoe.spec '0xfacet' do
|
|
7
|
+
|
|
8
|
+
self.version = '0.0.1'
|
|
9
|
+
|
|
10
|
+
self.summary = '0xfacet - facet vm base foundation'
|
|
11
|
+
self.description = summary
|
|
12
|
+
|
|
13
|
+
self.urls = { home: 'https://github.com/s6ruby/rubidity.review' }
|
|
14
|
+
|
|
15
|
+
self.author = 'Gerald Bauer'
|
|
16
|
+
self.email = 'gerald.bauer@gmail.com'
|
|
17
|
+
|
|
18
|
+
# switch extension to .markdown for gihub formatting
|
|
19
|
+
self.readme_file = 'README.md'
|
|
20
|
+
self.history_file = 'CHANGELOG.md'
|
|
21
|
+
|
|
22
|
+
self.extra_deps = [
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
self.licenses = ['Public Domain']
|
|
27
|
+
|
|
28
|
+
self.spec_extras = {
|
|
29
|
+
required_ruby_version: '>= 2.3'
|
|
30
|
+
}
|
|
31
|
+
end
|
data/lib/0xfacet.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: 0xfacet
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Gerald Bauer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rdoc
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '7'
|
|
23
|
+
type: :development
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '4.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '7'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: hoe
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '4.0'
|
|
40
|
+
type: :development
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '4.0'
|
|
47
|
+
description: 0xfacet - facet vm base foundation
|
|
48
|
+
email: gerald.bauer@gmail.com
|
|
49
|
+
executables: []
|
|
50
|
+
extensions: []
|
|
51
|
+
extra_rdoc_files:
|
|
52
|
+
- CHANGELOG.md
|
|
53
|
+
- Manifest.txt
|
|
54
|
+
- README.md
|
|
55
|
+
files:
|
|
56
|
+
- CHANGELOG.md
|
|
57
|
+
- Manifest.txt
|
|
58
|
+
- README.md
|
|
59
|
+
- Rakefile
|
|
60
|
+
- lib/0xfacet.rb
|
|
61
|
+
homepage: https://github.com/s6ruby/rubidity.review
|
|
62
|
+
licenses:
|
|
63
|
+
- Public Domain
|
|
64
|
+
metadata: {}
|
|
65
|
+
post_install_message:
|
|
66
|
+
rdoc_options:
|
|
67
|
+
- "--main"
|
|
68
|
+
- README.md
|
|
69
|
+
require_paths:
|
|
70
|
+
- lib
|
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '2.3'
|
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '0'
|
|
81
|
+
requirements: []
|
|
82
|
+
rubygems_version: 3.4.10
|
|
83
|
+
signing_key:
|
|
84
|
+
specification_version: 4
|
|
85
|
+
summary: 0xfacet - facet vm base foundation
|
|
86
|
+
test_files: []
|