eventful.rb 2.1.0 → 2.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: 846283505b6dd8c3226f0dc3fedfd647fa435c2274b72ca2fbb6c76b5e7dc868
4
- data.tar.gz: 75b8e6ca2f807d3f0e92fdc2157e55007e5c990387ece3ee1cc2f26a4f3e850a
3
+ metadata.gz: 0fa100696398c9168f8346c7776821b3313ee6d57835ef52718c0d9cc5824355
4
+ data.tar.gz: 7a6a4e394565bf611741d60d2064f9c24840b4113fcba8b2849d7374c35de571
5
5
  SHA512:
6
- metadata.gz: b1279064416a1b694f2e0ff963773576a4947e9bd46d61673612d5b38149a176993afeaec22278d0a9bdac2fe62d8fbbf00842fd239d4690ad9258f0a172f46d
7
- data.tar.gz: a38401bee440ce9d82eb065d5c4e1000404fbd758eea010b31d0d61659a27a81e9281c55d68dcab0c5c7add620f07aba93ad08be0b4c1d0f41833f9f88b92f17
6
+ metadata.gz: 8af5526b123c8d3892fddf6935eadc40683a0dd6bbff43a7444e6e3a8b999dfbea4fdfdc4f1b7922659d35ec74b14cfef079f9edda9fa26397cb0c4baa1cea55
7
+ data.tar.gz: ec0b8f7bfe0252fdab31d2345867296e8d7b4d16134d39a4ba460e217e919696ff481dfa4d5214f19a3e9f3017b4ada1eae9df989e46d4836159bd589f96c311
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # eventful/CHANGELOG.md
2
2
 
3
+ ## 2.1.1 (20260817): Populate .gitignore, + LICENSE.txt, include LICENSE.txt in the gemspec, and correct the README.
4
+ -----------------------------------------------------------------------------------------------------------------------
5
+
6
+ ### +
7
+ 1. LICENSE.txt: The MIT text, as switches and moby carry it, the gemspec having declared MIT with no file to point at. Copyright 2014-2026, the repository's own span.
8
+
9
+ ### ~
10
+ 1. .gitignore: 44 lines, covering gem builds, bundler, RDoc and YARD output, .DS_Store, editor files, the Ruby version managers, test artefacts and .claude. The file existed and was empty, which git-boot created it as until 0.16.0 and nothing had since filled in.
11
+ 2. README.md: /eventful.rb/eventful/ in the title and the fork URL, the repository having been renamed.
12
+ 3. README.md: /Stateful/stateful.rb/, naming the dependency as it is published.
13
+ 4. README.md: The licence is stated as MIT, which is what the gemspec declares. It had read "the Ruby License" while linking to the MIT text.
14
+
3
15
  ## 2.1.0 (20260413): Add mRuby support.
4
16
  -----------------------------------------------------------------------------------------------------------------------
5
17
 
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2014-2026 thoran
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 CHANGED
@@ -1,6 +1,6 @@
1
- # eventful.rb
1
+ # eventful
2
2
 
3
- Automatically change state with Stateful state machines.
3
+ Automatically change state with stateful.rb state machines.
4
4
 
5
5
  ## Installation
6
6
 
@@ -68,7 +68,7 @@ machine.current_state.name
68
68
 
69
69
  ## Contributing
70
70
 
71
- 1. Fork it (https://github.com/thoran/eventful.rb/fork)
71
+ 1. Fork it (https://github.com/thoran/eventful/fork)
72
72
  2. Create your feature branch (`git checkout -b my-new-feature`)
73
73
  3. Commit your changes (`git commit -am 'Add some feature'`)
74
74
  4. Push to the branch (`git push origin my-new-feature`)
@@ -76,4 +76,4 @@ machine.current_state.name
76
76
 
77
77
  ## License
78
78
 
79
- The gem is available as open source under the terms of the [Ruby License](https://opensource.org/licenses/MIT).
79
+ MIT
data/eventful.rb.gemspec CHANGED
@@ -22,18 +22,17 @@ Gem::Specification.new do |spec|
22
22
  spec.homepage = 'http://github.com/thoran/eventful'
23
23
  spec.license = 'MIT'
24
24
 
25
- # The required version of Ruby is this higher than it strictly needs to be solely because the migrations have been made to require AR 6.0, but otherwise this should work with much lower versions of Ruby and ActiveRecord, even down to 2.3 (or lower) and AR 3 (or lower).
26
25
  spec.required_ruby_version = '>= 2.5'
27
-
28
26
  spec.require_paths = ['lib']
29
27
 
30
28
  spec.files = [
31
- 'eventful.rb.gemspec',
29
+ Dir['test/**/*.rb'],
30
+ Dir['lib/**/*.rb'],
32
31
  'CHANGELOG.md',
32
+ 'eventful.rb.gemspec',
33
33
  'Gemfile',
34
+ 'LICENSE.txt',
34
35
  'README.md',
35
- Dir['lib/**/*.rb'],
36
- Dir['test/**/*.rb']
37
36
  ].flatten
38
37
 
39
38
  spec.dependencies = %w{stateful.rb}
@@ -2,5 +2,5 @@
2
2
  # Eventful::VERSION
3
3
 
4
4
  module Eventful
5
- VERSION = '2.1.0'
5
+ VERSION = '2.1.1'
6
6
  end
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.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
@@ -89,6 +89,7 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - CHANGELOG.md
91
91
  - Gemfile
92
+ - LICENSE.txt
92
93
  - README.md
93
94
  - eventful.rb.gemspec
94
95
  - lib/Eventful.rb
@@ -121,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
122
  - !ruby/object:Gem::Version
122
123
  version: '0'
123
124
  requirements: []
124
- rubygems_version: 4.0.9
125
+ rubygems_version: 4.0.18
125
126
  specification_version: 4
126
127
  summary: Automatically change state with stateful.rb state machines.
127
128
  test_files: []