eventful.rb 2.1.1 → 2.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: 0fa100696398c9168f8346c7776821b3313ee6d57835ef52718c0d9cc5824355
4
- data.tar.gz: 7a6a4e394565bf611741d60d2064f9c24840b4113fcba8b2849d7374c35de571
3
+ metadata.gz: 2b570065ce6deae8ebafaa50d8abb0d1b94796a7f578a6f349ce6f58f8511ebb
4
+ data.tar.gz: a9586974108f22ea35ee47bb917a21a407b8ee5201b143e4797347e12061bb9d
5
5
  SHA512:
6
- metadata.gz: 8af5526b123c8d3892fddf6935eadc40683a0dd6bbff43a7444e6e3a8b999dfbea4fdfdc4f1b7922659d35ec74b14cfef079f9edda9fa26397cb0c4baa1cea55
7
- data.tar.gz: ec0b8f7bfe0252fdab31d2345867296e8d7b4d16134d39a4ba460e217e919696ff481dfa4d5214f19a3e9f3017b4ada1eae9df989e46d4836159bd589f96c311
6
+ metadata.gz: 88f2bb73d3a3a68f4cb69528ceb834705379571d4d08c389e133a631e6b1018e18e8e3defa0d5a3b9372f982d14ef7e779a1b299b8879d48143a3b0000588e52
7
+ data.tar.gz: 6ead4eae95793cc73cfb0149bb7a306e8ea7a0478483c207845ff558c4e777a9e483857f40387abaf821c57e38f159e95dabdc2272c67970338c050ccfed3caa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # eventful/CHANGELOG.md
2
2
 
3
+ ## 2.1.2 (20260910): ~ lib/Eventful.rb: + require of Eventful/VERSION, so a consumer can ask the library its version.
4
+ -----------------------------------------------------------------------------------------------------------------------
5
+
6
+ ### ~
7
+ 1. lib/Eventful.rb: + `require_relative File.join('Eventful', 'VERSION')`. The file has been present and unreached, so `require 'eventful.rb'` left Eventful::VERSION undefined and the gemspec was the only thing loading it.
8
+ 2. Eventful::VERSION: /2.1.1/2.1.2/
9
+
3
10
  ## 2.1.1 (20260817): Populate .gitignore, + LICENSE.txt, include LICENSE.txt in the gemspec, and correct the README.
4
11
  -----------------------------------------------------------------------------------------------------------------------
5
12
 
@@ -2,5 +2,5 @@
2
2
  # Eventful::VERSION
3
3
 
4
4
  module Eventful
5
- VERSION = '2.1.1'
5
+ VERSION = '2.1.2'
6
6
  end
data/lib/Eventful.rb CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  require 'Stateful'
8
8
  require_relative File.join('Eventful', 'ClassMethods')
9
+ require_relative File.join('Eventful', 'VERSION')
9
10
 
10
11
  module Eventful
11
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventful.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 4.0.18
125
+ rubygems_version: 4.0.19
126
126
  specification_version: 4
127
127
  summary: Automatically change state with stateful.rb state machines.
128
128
  test_files: []