scutua-ruby-gems 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 +51 -0
- data/lib/ruby/gems/version.rb +3 -0
- data/lib/ruby-gems/version.rb +3 -0
- data/lib/ruby-gems.rb +19 -0
- metadata +90 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a63b854db0f3992884621fb2d4fa7b82afc1d2267f1167a8f7083439628063e8
|
|
4
|
+
data.tar.gz: 8c86b562ac334984d64689daf260b25f2296308c12988d2d73943827e94db0d0
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ede41005795bc8316cf408890667a21692e3dfd783a60b9782584777a6c497a5bfdfd0880487a8448dc3e5ebcf3fdb66249f90cc3a2b0571c7278dae76dd6b4a
|
|
7
|
+
data.tar.gz: 90f2d060e01b49a750e13b76def02890a0af54adc0f2c12f04b33d1e5e8d23729a7f9f218f4d246cee7a94272854a1a7bbc4625cfc7a7f3b9fba4ef68c605c4c
|
data/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# ๐ ruby-gems
|
|
2
|
+
|
|
3
|
+
Welcome aboard the reef archive for `ruby-gems` โ a solo ritual repo curated by Chaisak, reef architect and badge master. This repo documents gem-based workflows, setup rituals, and legacy badge moments.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## ๐ Active Setup
|
|
8
|
+
|
|
9
|
+
- `ruby-gems` initialized with `README.md` and `.gitignore`
|
|
10
|
+
- GitHub App `czonedive-core-agent` connected
|
|
11
|
+
- Webhook secured with `reefBadgeSecret123`
|
|
12
|
+
- Slack integration confirmed via `SLACK_WEBHOOK_URL`
|
|
13
|
+
- SSL verification enabled
|
|
14
|
+
- Repo pushed via `git push -u origin main`
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## ๐งช Ritual Chain
|
|
19
|
+
|
|
20
|
+
| Ritual | Status | Badge |
|
|
21
|
+
|--------|--------|-------|
|
|
22
|
+
| `git init` | โ
| `init-badge` |
|
|
23
|
+
| `git remote add origin` | โ
| `origin-linked` |
|
|
24
|
+
| `webhook + slack` | โ
| `reefBadge-pinged` |
|
|
25
|
+
| `README.md` | โ
| `readme-seeded` |
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## ๐ Legacy Notes
|
|
30
|
+
|
|
31
|
+
This repo follows the reef archive structure:
|
|
32
|
+
- Active setup and new code always appear at the top
|
|
33
|
+
- Legacy rituals, badge logs, and splash moments are archived below
|
|
34
|
+
- All `.env` secrets are protected via `.gitignore`
|
|
35
|
+
- GitHub identity: `scutuatua-crypto` only
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## ๐ฆ Reef Archive Reference
|
|
40
|
+
|
|
41
|
+
- Domain: `www.whaletrucker-reef.com`
|
|
42
|
+
- GitHub App: `czonedive-core-agent`
|
|
43
|
+
- Jira: `scutua.atlassian.net`
|
|
44
|
+
- Slack workspace: `whaletrucker.slack.com`
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## ๐ splash.log
|
|
49
|
+
|
|
50
|
+
See [splash.log gist](https://gist.github.com/scutuatua-crypto) for full badge timeline and webhook ritual confirmation.
|
|
51
|
+
|
data/lib/ruby-gems.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "ruby-gems/version"
|
|
4
|
+
|
|
5
|
+
module RubyGems
|
|
6
|
+
class Archiver
|
|
7
|
+
def initialize(repo_name)
|
|
8
|
+
@repo_name = repo_name
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def check_status
|
|
12
|
+
"RubyGems Archiver initialized for #{@repo_name}. WhaleTrucker Standard active."
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def self.init_archiver(repo_name)
|
|
17
|
+
Archiver.new(repo_name)
|
|
18
|
+
end
|
|
19
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: scutua-ruby-gems
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- scutuatua-crypto
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-05-11 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '13.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '13.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
description: Core utility gems for standardized reef archiving and security-first
|
|
56
|
+
development.
|
|
57
|
+
email:
|
|
58
|
+
- scutua@gmail.com
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- README.md
|
|
64
|
+
- lib/ruby-gems.rb
|
|
65
|
+
- lib/ruby-gems/version.rb
|
|
66
|
+
- lib/ruby/gems/version.rb
|
|
67
|
+
homepage: https://github.com/scutuatua-crypto/ruby-gems
|
|
68
|
+
licenses:
|
|
69
|
+
- MIT
|
|
70
|
+
metadata: {}
|
|
71
|
+
post_install_message:
|
|
72
|
+
rdoc_options: []
|
|
73
|
+
require_paths:
|
|
74
|
+
- lib
|
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: 3.0.0
|
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '0'
|
|
85
|
+
requirements: []
|
|
86
|
+
rubygems_version: 3.3.27
|
|
87
|
+
signing_key:
|
|
88
|
+
specification_version: 4
|
|
89
|
+
summary: WhaleTrucker ecosystem archiving and badge management tools.
|
|
90
|
+
test_files: []
|