finite_state_machine 0.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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/fsm.rb +4 -0
  3. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 31485239a46bc5a97274996829a253a467a6d565
4
+ data.tar.gz: b3023965486eb68bb87cb82b203f18560890a0d0
5
+ SHA512:
6
+ metadata.gz: 0eb999f3990df20cf8542cf25fd4f72fa95590e15a30a8179ab5ae8103545808e6556ad2531ad4bc6e2d18c95dda0caa0d2624d02365221f03b30d694b250847
7
+ data.tar.gz: 8877f8722a4bf0ed44676df5a8c7a1aa99cff58e57a5c07ea5e2fbaf8e6e5d2fab3c262dac2b60b23170d3bb6c3a2c91d4e7734eee4e5afc8271934a819e3e28
data/lib/fsm.rb ADDED
@@ -0,0 +1,4 @@
1
+ module Fsm
2
+ require "./lib/fsm/machine"
3
+ require "./lib/fsm/transition_error"
4
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: finite_state_machine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Mario Gintili
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-01-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A finite state machine for the Ruby programming language. Dependency
14
+ free, highly declarative and with a minimal API.
15
+ email: mario@sunlight.is
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/fsm.rb
21
+ homepage: http://rubygems.org/gems/finite_state_machine
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.4.5.1
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Tiny finite state machine implementation
45
+ test_files: []