gamefic-standard 4.1.1 → 4.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e0ab938b3b4ed3af64714173dfe10ae80d67b60a8e50cf26b2551932413e330
4
- data.tar.gz: 4f719431c70c129a37ff18ffda659189e7f5104acc879c1475182a1d26229e8f
3
+ metadata.gz: c40e833aa8efac65399745088c3119ff24a05b6dc957da7574da7e464971af90
4
+ data.tar.gz: 5f0eb63d47bf2ea9af7bf8fbe50bfcd40e8bfcf6f99d9788307f4ce8a8621528
5
5
  SHA512:
6
- metadata.gz: 3b2f5bd3bffc1d3a0007612dee1c15f30281dbca24d554362df6f92948409b9f5b480d4aff2495047f7c7fd993683250954af1f6938f5ee25ed7e6be48182d14
7
- data.tar.gz: 253c0943bcbd39d9de01a3937af56b5e9ccfee61f86b49ced2708c9a3bb3352a99a7bef302b00f5d90ed8d4dca446abbd6cc9bc754a433e332604d7f76ce8067
6
+ metadata.gz: 1abeb6166409e2c8c4da7f3f0576d7d6075f75963fe6ec991694c3679517b06cff9cfe864705b76bf4fc729093fd52f0e25aeef700b365c0105807a08ebb8894
7
+ data.tar.gz: 1aff86a5d9fd581d534992ecdec8b8ac5ae7a10925267e7304841951f7d9142315037f4f8c4881f146309659a2ca0444f7868c50921e77db3aaab61c604075a3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.1.2 - June 17, 2026
2
+ - Monkey patch Entity and Actor
3
+
1
4
  ## 4.1.1 - June 16, 2026
2
5
  - Surface Thing and Character aliases in YARD
3
6
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  module Gamefic
4
4
  module Standard
5
+ # @return [Class<Gamefic::Actor>]
5
6
  Character = Gamefic::Actor
6
- # @!parse
7
- # class Character < Gamefic::Actor; end
8
7
 
9
- class Character
8
+ class Gamefic::Actor
9
+ include Standardized
10
10
  include ImplicitTaking
11
11
 
12
12
  set_default gender: :other
@@ -2,11 +2,13 @@
2
2
 
3
3
  module Gamefic
4
4
  module Standard
5
+ # @return [Class<Gamefic::Entity>]
5
6
  Thing = Gamefic::Entity
6
- # @!parse
7
- # class Thing < Gamefic::Entity; end
8
7
 
9
- Thing.set_default itemized: true, portable: false
10
- Thing.include Gamefic::Standard::Standardized
8
+ class Gamefic::Entity
9
+ include Standardized
10
+
11
+ set_default itemized: true, portable: false
12
+ end
11
13
  end
12
14
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gamefic
4
4
  module Standard
5
- VERSION = '4.1.1'
5
+ VERSION = '4.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamefic-standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.1
4
+ version: 4.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Snyder