fhlow 1.91.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.
- data/bin/fhlow +186 -0
- data/lib/module_cmdparse/cmdparse.rb +480 -0
- data/lib/module_cmdparse/cmdparse/wrappers/optparse.rb +65 -0
- data/lib/module_config/config.rb +67 -0
- data/lib/module_config/configexception.rb +18 -0
- data/lib/module_config/configitems/complex.rb +71 -0
- data/lib/module_config/configitems/complexpackage.rb +67 -0
- data/lib/module_config/configitems/complexunit.rb +76 -0
- data/lib/module_config/configitems/simple.rb +56 -0
- data/lib/module_config/configitems/simplearchitecture.rb +52 -0
- data/lib/module_config/configitems/simplepackage.rb +47 -0
- data/lib/module_config/configitems/simpleunit.rb +53 -0
- data/lib/module_config/configs.test +24 -0
- data/lib/module_config/item.rb +34 -0
- data/lib/module_config/itemfactory.rb +55 -0
- data/lib/module_config/section.rb +69 -0
- data/lib/module_config/test.flw +20 -0
- data/lib/module_config/test.rb +85 -0
- data/lib/module_config/tmp +3 -0
- data/lib/module_config/unittests/config_1.flw +14 -0
- data/lib/module_config/unittests/config_1_fixed.flw +14 -0
- data/lib/module_config/unittests/config_2.flw +15 -0
- data/lib/module_config/unittests/config_3a.flw +16 -0
- data/lib/module_config/unittests/config_3b.flw +15 -0
- data/lib/module_config/unittests/config_test.rb +579 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configexception_rb.html +647 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complex_rb.html +700 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complexpackage_rb.html +694 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complexunit_rb.html +704 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simple_rb.html +685 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simplepackage_rb.html +676 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simpleunit_rb.html +682 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-item_rb.html +663 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-itemfactory_rb.html +687 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-myconfig_rb.html +687 -0
- data/lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-section_rb.html +692 -0
- data/lib/module_config/unittests/coverage/index.html +689 -0
- data/lib/module_fhlow/fhlowexception.rb +55 -0
- data/lib/module_fhlow/leaf.rb +197 -0
- data/lib/module_fhlow/leaf.rb~ +202 -0
- data/lib/module_fhlow/leaffactory.rb +97 -0
- data/lib/module_fhlow/leafs/Package.rb +55 -0
- data/lib/module_fhlow/leafs/Unit.rb +152 -0
- data/lib/module_fhlow/log.rb +100 -0
- data/lib/module_fhlow/node.rb +206 -0
- data/lib/module_fhlow/pen.rb +101 -0
- data/lib/module_fhlow/plugin.rb +54 -0
- data/lib/module_fhlow/pluginpool.rb +81 -0
- data/lib/module_fhlow/rootnode.rb +98 -0
- data/lib/module_fhlow/test.rb +15 -0
- data/lib/module_term/ansicolor.rb +102 -0
- data/tests/testsuite.rb +20 -0
- metadata +106 -0
data/tests/testsuite.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'test/unit/testsuite'
|
2
|
+
|
3
|
+
#require 'test/unit/ui/gtk/testrunner'
|
4
|
+
#require 'test/unit/ui/console/testrunner'
|
5
|
+
#require 'test/unit/ui/fox/testrunner'
|
6
|
+
require 'test/unit/ui/gtk2/testrunner'
|
7
|
+
|
8
|
+
require 'config_test'
|
9
|
+
|
10
|
+
class TS_MyTests
|
11
|
+
def self.suite
|
12
|
+
suite = Test::Unit::TestSuite.new
|
13
|
+
suite << TC_config_test.suite
|
14
|
+
return suite
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
Test::Unit::UI::GTK2::TestRunner.run(TS_MyTests)
|
19
|
+
#Test::Unit::UI::GTK::TestRunner.run(TS_MyTests)
|
20
|
+
#Test::Unit::UI::Console::TestRunner.run(TS_MyTests)
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: fhlow
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.91.0
|
7
|
+
date: 2007-04-02 00:00:00 +02:00
|
8
|
+
summary: A working environment that speeds up and structures the design process of technology independent digital chips.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: simon.lasselsberger@fh-hagenberg.at
|
12
|
+
homepage: http://fhlow.lisuna.org
|
13
|
+
rubyforge_project: fhlow
|
14
|
+
description:
|
15
|
+
autorequire:
|
16
|
+
default_executable: fhlow
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
authors:
|
29
|
+
- Simon Lasselsberger
|
30
|
+
files:
|
31
|
+
- bin/fhlow
|
32
|
+
- lib/module_cmdparse
|
33
|
+
- lib/module_fhlow
|
34
|
+
- lib/module_config
|
35
|
+
- lib/module_term
|
36
|
+
- lib/module_cmdparse/cmdparse
|
37
|
+
- lib/module_cmdparse/cmdparse.rb
|
38
|
+
- lib/module_cmdparse/cmdparse/wrappers
|
39
|
+
- lib/module_cmdparse/cmdparse/wrappers/optparse.rb
|
40
|
+
- lib/module_fhlow/leafs
|
41
|
+
- lib/module_fhlow/fhlowexception.rb
|
42
|
+
- lib/module_fhlow/leaf.rb~
|
43
|
+
- lib/module_fhlow/leaf.rb
|
44
|
+
- lib/module_fhlow/test.rb
|
45
|
+
- lib/module_fhlow/pen.rb
|
46
|
+
- lib/module_fhlow/pluginpool.rb
|
47
|
+
- lib/module_fhlow/node.rb
|
48
|
+
- lib/module_fhlow/plugin.rb
|
49
|
+
- lib/module_fhlow/leaffactory.rb
|
50
|
+
- lib/module_fhlow/log.rb
|
51
|
+
- lib/module_fhlow/rootnode.rb
|
52
|
+
- lib/module_fhlow/leafs/Package.rb
|
53
|
+
- lib/module_fhlow/leafs/Unit.rb
|
54
|
+
- lib/module_config/configitems
|
55
|
+
- lib/module_config/configs.test
|
56
|
+
- lib/module_config/configexception.rb
|
57
|
+
- lib/module_config/test.flw
|
58
|
+
- lib/module_config/config.rb
|
59
|
+
- lib/module_config/tmp
|
60
|
+
- lib/module_config/unittests
|
61
|
+
- lib/module_config/section.rb
|
62
|
+
- lib/module_config/itemfactory.rb
|
63
|
+
- lib/module_config/item.rb
|
64
|
+
- lib/module_config/test.rb
|
65
|
+
- lib/module_config/configitems/simplepackage.rb
|
66
|
+
- lib/module_config/configitems/simpleunit.rb
|
67
|
+
- lib/module_config/configitems/complex.rb
|
68
|
+
- lib/module_config/configitems/simple.rb
|
69
|
+
- lib/module_config/configitems/complexunit.rb
|
70
|
+
- lib/module_config/configitems/complexpackage.rb
|
71
|
+
- lib/module_config/configitems/simplearchitecture.rb
|
72
|
+
- lib/module_config/unittests/config_2.flw
|
73
|
+
- lib/module_config/unittests/config_1.flw
|
74
|
+
- lib/module_config/unittests/config_1_fixed.flw
|
75
|
+
- lib/module_config/unittests/config_test.rb
|
76
|
+
- lib/module_config/unittests/config_3a.flw
|
77
|
+
- lib/module_config/unittests/config_3b.flw
|
78
|
+
- lib/module_config/unittests/coverage
|
79
|
+
- lib/module_config/unittests/coverage/index.html
|
80
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configexception_rb.html
|
81
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simple_rb.html
|
82
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-item_rb.html
|
83
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-itemfactory_rb.html
|
84
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-myconfig_rb.html
|
85
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-section_rb.html
|
86
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simpleunit_rb.html
|
87
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complex_rb.html
|
88
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-simplepackage_rb.html
|
89
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complexpackage_rb.html
|
90
|
+
- lib/module_config/unittests/coverage/-home-simon-tmp-fhlow_v2-flw-core-lib-module_config-configitems-complexunit_rb.html
|
91
|
+
- lib/module_term/ansicolor.rb
|
92
|
+
- tests/testsuite.rb
|
93
|
+
test_files: []
|
94
|
+
|
95
|
+
rdoc_options: []
|
96
|
+
|
97
|
+
extra_rdoc_files: []
|
98
|
+
|
99
|
+
executables:
|
100
|
+
- fhlow
|
101
|
+
extensions: []
|
102
|
+
|
103
|
+
requirements: []
|
104
|
+
|
105
|
+
dependencies: []
|
106
|
+
|