scry-rpg-callouts 1.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: 6cabb13ad3bee7617e8595c9247125bfa58eca9437bb63e235897d73ea6bbed0
4
+ data.tar.gz: f218139b23f775f080f44c8b200dfe4584b474bc70b61aebe896346087432e82
5
+ SHA512:
6
+ metadata.gz: e506ac404508122640140cf6fd8954b92f5c7b069e7c06fe5c892f703b5de809eee91fdc4b3d03c2ee3e5df00d6286f3f392dbcabcc0418bb467ffbae7f957e8
7
+ data.tar.gz: 7f2423c0128de36b4de6db38ff882c873e5d062b10156c1679fdee271f51d2a94674a3a5a7d40d3a9277fef36e85dc6800dfa32c768efa222d1543b66219a19e
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Directsun Games
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,50 @@
1
+ # scry-rpg-callouts
2
+
3
+ Scry **style** content gem that registers Just the Docs callouts used by adventures:
4
+
5
+ | Class | Title | Color |
6
+ | --- | --- | --- |
7
+ | `monster` | Monster | red |
8
+ | `monster-no-title` | — | red |
9
+ | `item` | Item | blue |
10
+
11
+ ## Layout
12
+
13
+ ```
14
+ scry-rpg-callouts/
15
+ ├── lib/scry-rpg-callouts.rb # no-op require stub
16
+ ├── content/
17
+ │ ├── manifest.yml # config_file: config.yml
18
+ │ └── config.yml # callout definitions (not Jekyll `_config.yml`)
19
+ ├── scry-rpg-callouts.gemspec
20
+ ├── LICENSE
21
+ └── README.md
22
+ ```
23
+
24
+ ## Install
25
+
26
+ ```ruby
27
+ group :jekyll_plugins do
28
+ gem "jekyll-scry-content", "~> 0.3"
29
+ gem "scry-rpg-callouts", "~> 1.0"
30
+ end
31
+ ```
32
+
33
+ Requires `jekyll-scry-content` **0.2+** (declared in this gemspec) in the host site's `plugins:` list. Fine inside or outside `group :jekyll_plugins`. The loader reads `content/config.yml` and merges it into site config in memory; it does not copy that file into the site, so it never collides with Jekyll's `_config.yml`. Site `_config.yml` still wins if you redefine the same callout names.
34
+
35
+ ## Usage
36
+
37
+ ```markdown
38
+ {: .monster}
39
+ > **Goblin**
40
+ >
41
+ > AC 6 [13], HD 1-1 (3hp), Att 1 × spear (1d6), THAC0 19 [+0], MV 60′ (20′), ML 7
42
+
43
+ {: .item}
44
+ > **Silver Key**
45
+ >
46
+ > Opens the locked door in area 3. Worth 25 gp.
47
+
48
+ {: .monster-no-title}
49
+ > Same red styling, no "Monster" heading.
50
+ ```
@@ -0,0 +1,11 @@
1
+ # Merged into the host site config by jekyll-scry-content.
2
+ # Not a Jekyll `_config.yml` — do not rename this file to `_config.yml`.
3
+ callouts:
4
+ monster:
5
+ title: Monster
6
+ color: red
7
+ monster-no-title:
8
+ color: red
9
+ item:
10
+ title: Item
11
+ color: blue
@@ -0,0 +1,6 @@
1
+ schema_version: 1
2
+ id: rpg-callouts
3
+ kind: style
4
+ title: "Scry RPG callouts"
5
+ version: "1.0"
6
+ config_file: config.yml
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Data gem. jekyll-scry-content discovers this package via gemspec metadata
4
+ # (`scry_content: "true"`). This file exists so `require "scry-rpg-callouts"`
5
+ # succeeds if the gem is listed in group :jekyll_plugins.
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: scry-rpg-callouts
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - directsun
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: jekyll-scry-content
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '0.2'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '0.2'
26
+ email: []
27
+ executables: []
28
+ extensions: []
29
+ extra_rdoc_files: []
30
+ files:
31
+ - LICENSE
32
+ - README.md
33
+ - content/config.yml
34
+ - content/manifest.yml
35
+ - lib/scry-rpg-callouts.rb
36
+ homepage: https://github.com/sunflowermans/scry-rpg-callouts
37
+ licenses:
38
+ - MIT
39
+ metadata:
40
+ scry_content: 'true'
41
+ scry_content_manifest: content/manifest.yml
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '3.0'
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.6.9
57
+ specification_version: 4
58
+ summary: Just the Docs callouts for Scry adventures (monster, item).
59
+ test_files: []