nfa2dfa 1.0.6 → 1.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 +4 -4
- data/bin/{automaton → nfa2dfa} +3 -3
- metadata +34 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbab533490518b4c647279ce350c19a02fb0689c
|
4
|
+
data.tar.gz: d179faa2486eb52b07c1004c15e13315c6fbb7a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07695859de50e73183fa7fcee02061f125cdc0ab9aac9f41e79fdd806c6c636fd9ca337a3284e333ee64c9d04d80065ed611b77dc906848ad8bf0531208dfcec
|
7
|
+
data.tar.gz: 1272fd6c80caa9eb789758e718017101031a5ec87da7d0a7f0c4b5475ed71581b9fc071e094687521c5cc2950c97c2cc4a3ba90653e8b3da24f275f91a22fc0e
|
data/bin/{automaton → nfa2dfa}
RENAMED
@@ -5,10 +5,10 @@ require 'commander/import'
|
|
5
5
|
require 'nfa2dfa'
|
6
6
|
program :version, '0.0.1'
|
7
7
|
program :description, 'Controller of automaton'
|
8
|
-
program :name, '
|
8
|
+
program :name, 'nfa2dfa'
|
9
9
|
|
10
10
|
command :create_deterministic do |c|
|
11
|
-
c.syntax = '
|
11
|
+
c.syntax = 'nfa2dfa create_finite [options]'
|
12
12
|
c.description = 'Creates determined automaton from file and writes it into "<input_file>.determined"'
|
13
13
|
c.action do |args|
|
14
14
|
args.each do |arg|
|
@@ -21,7 +21,7 @@ command :create_deterministic do |c|
|
|
21
21
|
end
|
22
22
|
|
23
23
|
command :automaton_to_png do |c|
|
24
|
-
c.syntax = '
|
24
|
+
c.syntax = 'nfa2dfa automaton_to_png [options]'
|
25
25
|
c.description = 'Creates png representation of automaton from input'
|
26
26
|
c.action do |args|
|
27
27
|
args.each do |arg|
|
metadata
CHANGED
@@ -1,19 +1,47 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nfa2dfa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Zachov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
12
|
-
dependencies:
|
11
|
+
date: 2013-10-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ruby-graphviz
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
13
41
|
description: Finite automaton determinizer
|
14
42
|
email: martin.zachov@gmail.com
|
15
43
|
executables:
|
16
|
-
-
|
44
|
+
- nfa2dfa
|
17
45
|
extensions: []
|
18
46
|
extra_rdoc_files: []
|
19
47
|
files:
|
@@ -24,7 +52,7 @@ files:
|
|
24
52
|
- spec/automaton_spec.rb
|
25
53
|
- spec/state_spec.rb
|
26
54
|
- spec/transition_spec.rb
|
27
|
-
- bin/
|
55
|
+
- bin/nfa2dfa
|
28
56
|
homepage: http://fit.cvut.cz
|
29
57
|
licenses:
|
30
58
|
- GNU GPL
|
@@ -44,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
44
72
|
- !ruby/object:Gem::Version
|
45
73
|
version: '0'
|
46
74
|
requirements:
|
47
|
-
-
|
75
|
+
- graphviz
|
48
76
|
rubyforge_project:
|
49
77
|
rubygems_version: 2.0.3
|
50
78
|
signing_key:
|