gamefic-standard 4.1.0 → 4.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb3b66cc12abfb8e46bd9b9fb042d2aeb34a0cdd1bd13b0c9865bee9493a5f54
4
- data.tar.gz: c9e3e7f515bcf2b294ace5171fe0f843d8298135338f53950cca0e3468437ffe
3
+ metadata.gz: 5e0ab938b3b4ed3af64714173dfe10ae80d67b60a8e50cf26b2551932413e330
4
+ data.tar.gz: 4f719431c70c129a37ff18ffda659189e7f5104acc879c1475182a1d26229e8f
5
5
  SHA512:
6
- metadata.gz: fc292cde7a1465c88a64bf17c13e1f9124ed98ed59382258b878d1a56bbafd890f818568cca80f0a72a11a30e45acceb6a1c9982b6847498cc6d12c0d9ae35e4
7
- data.tar.gz: e4d588d264b1f1ff8a4f189de4736f5d4cf10361d1f145401e20987a1e4eac08a44e46af8a0cd34487421faea7f346846c511f893088237b985d62dacb9aadd9
6
+ metadata.gz: 3b2f5bd3bffc1d3a0007612dee1c15f30281dbca24d554362df6f92948409b9f5b480d4aff2495047f7c7fd993683250954af1f6938f5ee25ed7e6be48182d14
7
+ data.tar.gz: 253c0943bcbd39d9de01a3937af56b5e9ccfee61f86b49ced2708c9a3bb3352a99a7bef302b00f5d90ed8d4dca446abbd6cc9bc754a433e332604d7f76ce8067
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.1.1 - June 16, 2026
2
+ - Surface Thing and Character aliases in YARD
3
+
1
4
  ## 4.1.0 - February 1, 2026
2
5
  - In and out directions
3
6
  - Room#connect= accepts hashes
@@ -3,11 +3,14 @@
3
3
  module Gamefic
4
4
  module Standard
5
5
  Character = Gamefic::Actor
6
- Character.set_default gender: :other
6
+ # @!parse
7
+ # class Character < Gamefic::Actor; end
7
8
 
8
9
  class Character
9
10
  include ImplicitTaking
10
11
 
12
+ set_default gender: :other
13
+
11
14
  def accessible
12
15
  children.select { |child| child.is_a?(Scenery) }
13
16
  end
@@ -3,6 +3,9 @@
3
3
  module Gamefic
4
4
  module Standard
5
5
  Thing = Gamefic::Entity
6
+ # @!parse
7
+ # class Thing < Gamefic::Entity; end
8
+
6
9
  Thing.set_default itemized: true, portable: false
7
10
  Thing.include Gamefic::Standard::Standardized
8
11
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gamefic
4
4
  module Standard
5
- VERSION = '4.1.0'
5
+ VERSION = '4.1.1'
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.0
4
+ version: 4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Snyder
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  - !ruby/object:Gem::Version
220
220
  version: '0'
221
221
  requirements: []
222
- rubygems_version: 3.6.7
222
+ rubygems_version: 4.0.6
223
223
  specification_version: 4
224
224
  summary: The Gamefic standard script library.
225
225
  test_files: []