ruby-state-machine 1.1.0 → 1.2.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 665d443a898a9f324aa6c3940c99287be592a92a
4
+ data.tar.gz: dad2a4f3bda51408aae0a0dcb9d456052bc7ee6f
5
+ SHA512:
6
+ metadata.gz: e42f12cfd35f6b1e787627262d4ec3d1776bc0e6e412ac1513c883e21389cc677b7c023a4a9613869cc2ca0a8623b08ab4b3b3acf9a3ca87685031638a4f9ff2
7
+ data.tar.gz: 5c709191cdab80cc7b21ee2eaecb5d66d33194fea49eecb2d5e584a83baf1aded13896b528fe771aefa04e862ae1eadb46eba0922cade197ecc01fa0833ebf3d
data/README.md CHANGED
@@ -41,7 +41,6 @@ class SampleMachine
41
41
 
42
42
  state_transition :state=>:c_state, :event=>:x_event, :next=>:b_state
43
43
  end
44
- ```
45
44
 
46
45
  sm = SampleMachine.new
47
46
  puts sm.current_state # :a_state
@@ -1,7 +1,7 @@
1
1
  module RubyStateMachine
2
2
  module VERSION
3
3
  MAJOR = 1
4
- MINOR = 1
4
+ MINOR = 2
5
5
  TINY = 0
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-state-machine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
5
- prerelease:
4
+ version: 1.2.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - tangledpath
9
- autorequire:
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-04 00:00:00.000000000 Z
11
+ date: 2020-11-04 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: A ruby state machine
15
14
  email:
@@ -19,35 +18,33 @@ extensions: []
19
18
  extra_rdoc_files:
20
19
  - README.md
21
20
  files:
21
+ - README.md
22
+ - lib/ruby-state-machine.rb
22
23
  - lib/ruby-state-machine/bounded_array.rb
23
24
  - lib/ruby-state-machine/state_machine.rb
24
25
  - lib/ruby-state-machine/version.rb
25
- - lib/ruby-state-machine.rb
26
- - README.md
27
26
  homepage: http://github.com/tangledpath/ruby-state-machine
28
27
  licenses: []
29
- post_install_message:
28
+ metadata: {}
29
+ post_install_message:
30
30
  rdoc_options: []
31
31
  require_paths:
32
32
  - lib
33
33
  - ext
34
34
  required_ruby_version: !ruby/object:Gem::Requirement
35
- none: false
36
35
  requirements:
37
- - - ! '>='
36
+ - - ">="
38
37
  - !ruby/object:Gem::Version
39
38
  version: '0'
40
39
  required_rubygems_version: !ruby/object:Gem::Requirement
41
- none: false
42
40
  requirements:
43
- - - ! '>='
41
+ - - ">="
44
42
  - !ruby/object:Gem::Version
45
43
  version: '0'
46
44
  requirements: []
47
45
  rubyforge_project: ruby-state-machine
48
- rubygems_version: 1.8.25
49
- signing_key:
50
- specification_version: 3
46
+ rubygems_version: 2.6.10
47
+ signing_key:
48
+ specification_version: 4
51
49
  summary: A full-featured state machine gem for use within ruby.
52
50
  test_files: []
53
- has_rdoc: true