lex-tick 0.1.11 → 0.1.12

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: 39bbb25a91bd1c83e768654add47baa2a81e429635a223a88fa9d23df45f7c84
4
- data.tar.gz: 68b89d858df59af162e15c60b1a8e8f416e6b9e28ad6aa2b2ced4d51beade459
3
+ metadata.gz: d3be4c9e415b8ecb5f4bf87248edbc9d25192c1ad57892ed975ef722e517bc95
4
+ data.tar.gz: 4ddcbe7624bbab90a6fa463aa6c03cc36ae5ebe3efa9af121cc675fe3287e6cb
5
5
  SHA512:
6
- metadata.gz: 9ecf69a533a7e2781dd9253d1d6575fe58615c4b189e33aac1950d84b605710f43ee8e351c3483886bdcc9a35b54ca908ad1d62326e4ab8339a07144bfdcc12c
7
- data.tar.gz: 26911dfa59621334936c5a197b32eec2f6a918c3d23bab1fe35123342750759b7a6a4fa945b3d05ed726d6cc9541585efccf7dd36e5114f2877a50ce1a421248
6
+ metadata.gz: 9461d3f7247953b00d7a08263185128834584bc798877a120df3453773d9c0556f32777420cb4c9a9132c333544907009a6d8076681e2cc5c962cbe5ab369649
7
+ data.tar.gz: 379fbad5fccc9573de1a3b8ac0ccd660d918c86a5fc08858000b549cb341d925b98692a97e99eef4aab5a4ad13d73dcf31244725aef9b91edb13fc813dd76e23
@@ -38,6 +38,7 @@ module Legion
38
38
  consolidation_commit
39
39
  knowledge_promotion
40
40
  dream_reflection
41
+ partner_reflection
41
42
  dream_narration
42
43
  ].freeze
43
44
 
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module Tick
6
- VERSION = '0.1.11'
6
+ VERSION = '0.1.12'
7
7
  end
8
8
  end
9
9
  end
@@ -54,20 +54,34 @@ RSpec.describe Legion::Extensions::Tick::Helpers::Constants do
54
54
  end
55
55
 
56
56
  describe 'DREAM_PHASES' do
57
- it 'defines 9 dream phases' do
58
- expect(described_class::DREAM_PHASES.size).to eq(9)
57
+ it 'defines 10 dream phases' do
58
+ expect(described_class::DREAM_PHASES.size).to eq(10)
59
59
  end
60
60
 
61
- it 'includes all expected dream phase symbols' do
62
- expected = %i[memory_audit association_walk contradiction_resolution
63
- identity_entropy_check agenda_formation consolidation_commit
64
- knowledge_promotion dream_reflection dream_narration]
61
+ it 'includes partner_reflection' do
62
+ expect(described_class::DREAM_PHASES).to include(:partner_reflection)
63
+ end
64
+
65
+ it 'has partner_reflection between dream_reflection and dream_narration' do
66
+ idx_reflection = described_class::DREAM_PHASES.index(:dream_reflection)
67
+ idx_partner = described_class::DREAM_PHASES.index(:partner_reflection)
68
+ idx_narration = described_class::DREAM_PHASES.index(:dream_narration)
69
+ expect(idx_partner).to be > idx_reflection
70
+ expect(idx_partner).to be < idx_narration
71
+ end
72
+
73
+ it 'lists all phases in order' do
74
+ expected = %i[
75
+ memory_audit association_walk contradiction_resolution
76
+ identity_entropy_check agenda_formation consolidation_commit
77
+ knowledge_promotion dream_reflection partner_reflection dream_narration
78
+ ]
65
79
  expect(described_class::DREAM_PHASES).to eq(expected)
66
80
  end
67
81
  end
68
82
 
69
83
  describe 'MODE_PHASES' do
70
- it 'maps dormant_active to the 9 dream phases' do
84
+ it 'maps dormant_active to the 10 dream phases' do
71
85
  expect(described_class::MODE_PHASES[:dormant_active]).to eq(described_class::DREAM_PHASES)
72
86
  end
73
87
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-tick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity