rutema 2.0.0.pre5 → 2.0.0.pre6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d048197a4e2235edb7c8e5cb603062d320de8b1
4
- data.tar.gz: 3b2bafe37e8fd4346c8cfe8fec0e37500ef42179
3
+ metadata.gz: 20b45ee5c8f761a44085c7d0632267675b2093b3
4
+ data.tar.gz: d3674c7a843301a2553d421de1ef76ff446db8e5
5
5
  SHA512:
6
- metadata.gz: a6e2dd617d970fabc1e337b183d124652d89157fd2b444ad22df5f9c407d0287c824e3a3cb71fe94c40ccd602cab0b51c28fae716cca2783c1ba6b9073f69a25
7
- data.tar.gz: dd2efe2c3b843b8276403bc40dfcf150516cdc17b2328713f1d65832a2aba759f7988c5f5712f0aa44d1d78cf566eb1fc2e9bece414b1272be337e7e2060cf2c
6
+ metadata.gz: 8ac09bb9530131de9d056ffe74c18b823bb0af13d1a9e431f77ecfff13f4d8c091d9b75e96f2aa81e50af794732ae312bdb2c8b5e24eca8ea6258fb520e84a71
7
+ data.tar.gz: 682084e03f22424cc72ecf81dc906f83802e980a08edaca90cb00240d1d5531d557e092005aa6c6986c25230808512e6d0eacd9766a31fd71417e236fd04df52
data/History.txt CHANGED
@@ -1,213 +1,220 @@
1
- == 2.0.0.pre5 /2015-09-14
2
- * Add JUnit format reporter
3
- * The NUnit format is v3, which means it won't work for most CI plugins
4
- == 2.0.0 /2015-09-10
5
- * Completely rewritten execution engine
6
- * dropped Ruby 1.8.x, 1.9.x support, added 2.x
7
- * Rewritten configuration engine and new format for configuration files
8
- * Step by step status updates can now be sent to streaming reporters
9
- * Core separated from standard implementations
10
- * No database dependencies, no AR model.
11
- * No more disk IO in unit tests
12
- * pre3:
13
- * errors now affect the rutema exit code (before it was only test failures)
14
- * single test execution works with expected relative paths
15
- * pre4:
16
- * NUnit-style XML reporter
17
- * JSON reporter
18
-
19
- == 1.3.0 /2012-11-28
20
- * remove most of the gem dependencies by not requiring parsers and reporters in the core
21
- * update gem dependencies
22
- * switched license to MIT
23
- * officially abandon 1.8.7 support
24
-
25
- == 1.2.4 /2011-11-29
26
- * fixed a regression in parsing the configuration
27
- * updated gem dependencies
28
- * added Bundler configuration for development purposes
29
- * activerecord now loaded on demand to improve startup times
30
- * 1.9 compatibility!
31
- * the mixed sample/tests are now clearly split between examples and test data
32
- * Documentation overhaul started. 4 years of cruft to get rid of
33
- == 1.2.3 /2011-05-03
34
- * parser interface expanded for configuration validation
35
- * parser interface expanded to allow separate parsing of setup and teardown scripts
36
- == 1.2.2 /2011-04-05
37
- * Actually fixed all the places where path expansion takes place.
38
- == 1.2.1 /2011-04-04
39
- * The configuration code no longer assumes that you are passing files. configuration.tests= now assumes you're passing an array of strings and it is the responsibility of the parser to make heads or tails from that. The configuration is clever enough to detect paths relative to the configuration file and expand them.
40
- * some minor cosmetic changes in the documentation
41
- == 1.2.0 /2011-04-01
42
- * refactored library structure
43
- * More unit tests. We're now over the magical 80% coverage point
44
- * Updated gem dependencies for activerecord to the newest version
45
- * Deprecated rutemax. The command now is simply rutema (avoids observed confusion). Will remove in 1.3.0
46
- == 1.1.3 /2010-12-23
47
- * fixed dependency handling of Rutema::RakeTask within the block.
48
- == 1.1.2 /2010-12-22
49
- * Rutema::RakeTask accepts dependencies
50
- == 1.1.1 /2010-12-22
51
- * Bugfix: RakeTask constructor parameter config renamed to config_file to match the accessor methods
52
- == 1.1.0 /2010-12-20
53
- * Added Rutema::RakeTask class to allow integration of the test runner with rake
54
- * Email reporting now suppresses _setup and _teardown entries unless it's configured as verbose. To do this add a :verbose=>true entry in the reporter configuration
55
- * Fixed a bug, where on a setup spec failure the state of the actual spec was nil
56
- * added YAML dump reporter
57
- * Fixed a bug in the initialization of StepRunner that prevented use of --step
58
- == 1.0.9 / 2010-03-22
59
- * Fixed (hopefully) a nagging bug in activerecord reporter where it would crash if a step had status nil.
60
- * Fixed the same behaviour in the text reporter
61
- * Improved the logging of steps to avoid a debug logging exception that messed logs up
62
- * Thinned out the debug logs
63
- == 1.0.8 / 2009-11-13
64
- * ActiveRecordReporter now accepts all activerecord adapter parameters - you can now connect to DBs other than sqlite3
65
- * Reporter delegation now more robust (rutemax will exit gracefully and log if one reporter bombs)
66
- * The old db connection code was removed. Explicit dependencies to adapters are also absent - you have to now have the appropriate gems for the ActiveRecordReporter to work properly
67
- == 1.0.7 / 2009-09-11
68
- * Steps now include the commandline (if there) in their name - makes the logs more readable
69
- * Added a check for nil states to ensure reporters always get valid data
70
- * activerecord dependency is now 2.3.4
71
- == 1.0.6 / 2009-09-04
72
- * The run context is now passed to the runner and subsequently to the TestStep#run method
73
- This way you can pass informaton to the command being run (context contains information on the start time of the run, the spec filename as well as any information added in the configuration)
74
- * Minor bugfix in the activerecord reporter to avoid crashes due to nil runner states
75
- * The runner adds the current scenario name to the context passed
76
- == 1.0.5 / 2009-07-16
77
- * Updated gem dependencies to use activerecord 2.3.2
78
- * A failure of the check test now passes all test stati (as not_executed). This will not skew statistics that show the trends on test numbers
79
- * Setup and teardown are no longer executed for check tests
80
- * fixed bug in element_prompt where a negative answer would not set an error
81
- * TextReporter now shows the failed tests first, followed by tests with warnings, not executed tests and finally the successes. This gives a better overview of the important bits
82
- * removed require "rubygems" from library code
83
- == 1.0.4 / 2008-11-7
84
- * Added functionality that allows ignoring the result of a step. The step is considered always successful
85
- == 1.0.3 / 2008-10-28
86
- * The name of the configuration file is added in the context information - can be used to group results together in cases where there are multiple configurations
87
- * Context is now stored as a Hash
88
- * EmailReporter now displays a footer as defined in it's configuration
89
- == 1.0.2 / 2008-10-23
90
- * Bugfix in ActiveRecordReporter: \000 sequences produce exceptions when inserting.
91
- * Output and error from commands is now more strictly sanitized.
92
- == 1.0.1 / 2008-10-13
93
- * rutema_upgrader - Bug: update not performed - fixed
94
- == 1.0.0 / 2008-10-06
95
- * DB schema change: title and description added to scenario table
96
- * footer parameter for the email reporter
97
- * Specification titles included in the text reports
98
- * When parsing multiple specifications a duplicate name will now generate a parser error
99
- * rutema_updater upgrades existing databases, check http://patir.rubyforge.org/rutema/update_090_to_100.html
100
- * rutemah scrapped
101
- * rutemax logs it's version always
102
- * activerecord 2.1.1 is now in use
103
-
104
- == 0.9.3 / 2008-09-10
105
- * Sorted result summaries in the text and the email reporter
106
- * ActiveRecordReporter registration logging
107
- == 0.9.2 / 2008-09-10
108
- * Fixed major blunder with test reporting
109
- * Added text reporter for consistent text summaries
110
- * More tests
111
- * Fixed check test behaviour (was not running even when specified in the configuration)
112
- * Fixed bungled emailing when using multiple addresses in the config
113
- == 0.9.1 / 2008-09-09
114
- * Modularisation of element parsing methods introduced.
115
- * MinimalXMLParser refactored as example.
116
- * Extra element parser modules available in the rutema_elements gem
117
- * Cleaned up EmailReporter. Unit tests with Mocha, text report has a better layout
118
- == 0.9.0 / 2008-09-08
119
- * Ability to nest scenarios added to the base parser
120
- * Documentation at http://patir.rubyforge.org/rutema/tool_configuration.html
121
-
122
- == 0.8.0 / 2008-07-03
123
- * Split rutemaweb into own gem
124
- * Refactored reporters
125
- * Re-enabled the --step commandline facility of rutemax allowing step-by-step execution and fixed the StepRunner implementation
126
-
127
- == 0.7.1 / 2008-06-12
128
- * Added the ruport_formatter.rb file to the manifest (and consequently to the gem)
129
- * Locked down the active record and ramaze versions to avoid the String#start_with? alias bug from active support 2.1.0 and the Ramaze.start! change
130
- == 0.7.0 / 2008-05-16
131
- * Support for tools, paths and context information in the configuration solidified (http://patir.rubyforge.org/rutema/tool_configuration.html for more)
132
- * Changes in the configuration for Historian and ActiveRecordReporter. Check the distro_test samples
133
- * database connection code consolidated in db.rb
134
- * Added support for jdbc/h2 to work with jRuby
135
- * AR-reporter configuration expanded to support different adapters. Consistent with the Historian db configuration
136
- * rutema unit tests now run under jRuby
137
- * rutemah runs under jRuby
138
-
139
- == 0.6.5 / 2008-04-15
140
- * Updated rutemaweb controller to work with ramaze 0.3.9.1
141
- == 0.6.4 / 2008-03-30
142
- * Bugfix: duration SQL type adjusted in the model to return proper values.
143
- * Bugfix: name=step_type for TestStep so that name is assigned a value in the model step
144
- * Locked the Ramaze version to 0.3.5 until we find out why the new version breaks us
145
- == 0.6.3 / 2008-03-26
146
- * Bugfix: specifying a .spec filename on the commandline did not work - Path expanded before changing directory.
147
- * Bugfix: running an attended .spec on it's own was not possible - attended mode is now set for single runs.
148
- * Cleaned up the Runner's log output
149
- == 0.6.2 / 2008-03-12
150
- * Parsers derived from Rutema::SpecificationParser now receive the system configuration so that conventions like tools, paths and context can be used in element_ methods (this functionality fell through the cracks with the change in parser implementation)
151
- * rutemaweb now has proper commandline help and connects properly to the database
152
- == 0.6.1 / 2008-02-28
153
- * ExtensibleXMLParser made more tolerant (no exceptions when an element cannot be handled)
154
- * Bug: Typo in the class name used in the exceptions fixed
155
- * Bugfix: ActiveRecord connection throws an exception that prevented Historian from establishing a new one. Fixed
156
- * More unit tests
157
- == 0.6.0 / 2008-02-27
158
- * Added Rutema::ExtensibleXMLParser - this parser simplifies parser creation immensely. Check the documentation for details
159
- * "Howto create a parser v0.5.0" officially the fastest deprecation of a document ever. http://patir.rubyforge.org/rutema/parser.html is the new black.
160
- * Corrected some english spelling mistakes (hey, we're not native speakers)
161
- * Fixed an issue with AR cached connections that interfered with unit tests
162
-
163
- == 0.5.0 / 2008-02-26
164
- * activerecord reporter is now loaded by default (no need to require it in the configuration file)
165
- * bugfix: step names correctly written in the database
166
- * The web frontend now uses Ramaze
167
- * using patir-0.5.3 because of the chdir bugfixes
168
- * rutema can now test itself! rutemax and rutemah return meaningful exit codes. So there, we do eat our own dogfood
169
- * lots more documentation on usage and how to build a parser
170
-
171
- == 0.4.3 / 2008-02-25
172
- * fixed bug in rutemax when the activerecord reporter is used, where the database was not created relative to the configuration entry
173
- * fixed bug in rutemah where the report was not printed (doh!)
174
- * added active record reporter configuration and rutemah configuration to distro test
175
- == 0.4.2 / 2007-12-05
176
- * rutemah code cleaned up
177
- * Bugfix: MinimalXMLParser now handles relative paths in command elements correctly
178
- * distro_test added to the gem
179
- * Distro test documented, documentation pages updated
180
- == 0.4.1 / 2007-12-04
181
- * Documented MinimalXMLParser
182
- * More debug logs
183
- * Fixed bug in attribute checking for command steps in the minimal parser
184
- * Fixed bug in specification parsing in the Coordinator (no specs were returned)
185
- * Fixed bug in the implementation of <prompt> in the minimal parser (attended was not set)
186
- * Fixed bug in evaluation of attended status for steps
187
- * Fixed bug where runner would complain that attened scenarios cannot be run in unattended mode when choosing to run only attended tests
188
- * Added Version module to better handle versioning
189
- == 0.4 / 2007-07-05
190
- * rutemaweb, a web interface for the db contents added
191
- * uses WEBRick, Camping and Ruport
192
- * offers views on all runs in the System, detailed scenario views and scenario-over-time views
193
- * Runner now rescues all failures in scenarios
194
- * Bugfix in setting status of attended scenario in unattended mode
195
- * Better ruport usage in the historian
196
- * rutemah added to the gem and manifest
197
- * rutemax help message complete with commands
198
- * split the AR reporter and the model
199
- * expanded the unit tests
200
-
201
- == 0.3 / 2007-05-30
202
- * Reporter implementations moved to own file
203
- * Reporter interface changed (Runner stati now passed directly as a name indexed Hash, specifications passed as well)
204
- * ActiveRecordReporter with SQLite DB added
205
- * rutemah (the Historian) added in tools. The Historian reads from ActiveRecordReporter databases
206
- == 0.2 / 2007-05-21
207
- * bin/ files included in gem
208
- * rutemax: missing configuration file is now checked before passed to the system
209
- == 0.1 / 2007-05-21
210
- * A running system!
211
- * Basic XML parser with echo, command and prompt
212
- * email reporting
213
- * rutemax application
1
+ == 2.0.0.pre6 /2016-02-15
2
+ * Switch the reporter interface to using types instead of hashes
3
+ * Fix Ruby deprecation warnings
4
+ * Reduced message output
5
+ * Console reporter now has a verbosity setting
6
+ * Configuration setting for switching runners added
7
+ * NoOp Runner added
8
+ == 2.0.0.pre5 /2015-09-14
9
+ * Add JUnit format reporter
10
+ * The NUnit format is v3, which means it won't work for most CI plugins
11
+ == 2.0.0 /2015-09-10
12
+ * Completely rewritten execution engine
13
+ * dropped Ruby 1.8.x, 1.9.x support, added 2.x
14
+ * Rewritten configuration engine and new format for configuration files
15
+ * Step by step status updates can now be sent to streaming reporters
16
+ * Core separated from standard implementations
17
+ * No database dependencies, no AR model.
18
+ * No more disk IO in unit tests
19
+ * pre3:
20
+ * errors now affect the rutema exit code (before it was only test failures)
21
+ * single test execution works with expected relative paths
22
+ * pre4:
23
+ * NUnit-style XML reporter
24
+ * JSON reporter
25
+
26
+ == 1.3.0 /2012-11-28
27
+ * remove most of the gem dependencies by not requiring parsers and reporters in the core
28
+ * update gem dependencies
29
+ * switched license to MIT
30
+ * officially abandon 1.8.7 support
31
+
32
+ == 1.2.4 /2011-11-29
33
+ * fixed a regression in parsing the configuration
34
+ * updated gem dependencies
35
+ * added Bundler configuration for development purposes
36
+ * activerecord now loaded on demand to improve startup times
37
+ * 1.9 compatibility!
38
+ * the mixed sample/tests are now clearly split between examples and test data
39
+ * Documentation overhaul started. 4 years of cruft to get rid of
40
+ == 1.2.3 /2011-05-03
41
+ * parser interface expanded for configuration validation
42
+ * parser interface expanded to allow separate parsing of setup and teardown scripts
43
+ == 1.2.2 /2011-04-05
44
+ * Actually fixed all the places where path expansion takes place.
45
+ == 1.2.1 /2011-04-04
46
+ * The configuration code no longer assumes that you are passing files. configuration.tests= now assumes you're passing an array of strings and it is the responsibility of the parser to make heads or tails from that. The configuration is clever enough to detect paths relative to the configuration file and expand them.
47
+ * some minor cosmetic changes in the documentation
48
+ == 1.2.0 /2011-04-01
49
+ * refactored library structure
50
+ * More unit tests. We're now over the magical 80% coverage point
51
+ * Updated gem dependencies for activerecord to the newest version
52
+ * Deprecated rutemax. The command now is simply rutema (avoids observed confusion). Will remove in 1.3.0
53
+ == 1.1.3 /2010-12-23
54
+ * fixed dependency handling of Rutema::RakeTask within the block.
55
+ == 1.1.2 /2010-12-22
56
+ * Rutema::RakeTask accepts dependencies
57
+ == 1.1.1 /2010-12-22
58
+ * Bugfix: RakeTask constructor parameter config renamed to config_file to match the accessor methods
59
+ == 1.1.0 /2010-12-20
60
+ * Added Rutema::RakeTask class to allow integration of the test runner with rake
61
+ * Email reporting now suppresses _setup and _teardown entries unless it's configured as verbose. To do this add a :verbose=>true entry in the reporter configuration
62
+ * Fixed a bug, where on a setup spec failure the state of the actual spec was nil
63
+ * added YAML dump reporter
64
+ * Fixed a bug in the initialization of StepRunner that prevented use of --step
65
+ == 1.0.9 / 2010-03-22
66
+ * Fixed (hopefully) a nagging bug in activerecord reporter where it would crash if a step had status nil.
67
+ * Fixed the same behaviour in the text reporter
68
+ * Improved the logging of steps to avoid a debug logging exception that messed logs up
69
+ * Thinned out the debug logs
70
+ == 1.0.8 / 2009-11-13
71
+ * ActiveRecordReporter now accepts all activerecord adapter parameters - you can now connect to DBs other than sqlite3
72
+ * Reporter delegation now more robust (rutemax will exit gracefully and log if one reporter bombs)
73
+ * The old db connection code was removed. Explicit dependencies to adapters are also absent - you have to now have the appropriate gems for the ActiveRecordReporter to work properly
74
+ == 1.0.7 / 2009-09-11
75
+ * Steps now include the commandline (if there) in their name - makes the logs more readable
76
+ * Added a check for nil states to ensure reporters always get valid data
77
+ * activerecord dependency is now 2.3.4
78
+ == 1.0.6 / 2009-09-04
79
+ * The run context is now passed to the runner and subsequently to the TestStep#run method
80
+ This way you can pass informaton to the command being run (context contains information on the start time of the run, the spec filename as well as any information added in the configuration)
81
+ * Minor bugfix in the activerecord reporter to avoid crashes due to nil runner states
82
+ * The runner adds the current scenario name to the context passed
83
+ == 1.0.5 / 2009-07-16
84
+ * Updated gem dependencies to use activerecord 2.3.2
85
+ * A failure of the check test now passes all test stati (as not_executed). This will not skew statistics that show the trends on test numbers
86
+ * Setup and teardown are no longer executed for check tests
87
+ * fixed bug in element_prompt where a negative answer would not set an error
88
+ * TextReporter now shows the failed tests first, followed by tests with warnings, not executed tests and finally the successes. This gives a better overview of the important bits
89
+ * removed require "rubygems" from library code
90
+ == 1.0.4 / 2008-11-7
91
+ * Added functionality that allows ignoring the result of a step. The step is considered always successful
92
+ == 1.0.3 / 2008-10-28
93
+ * The name of the configuration file is added in the context information - can be used to group results together in cases where there are multiple configurations
94
+ * Context is now stored as a Hash
95
+ * EmailReporter now displays a footer as defined in it's configuration
96
+ == 1.0.2 / 2008-10-23
97
+ * Bugfix in ActiveRecordReporter: \000 sequences produce exceptions when inserting.
98
+ * Output and error from commands is now more strictly sanitized.
99
+ == 1.0.1 / 2008-10-13
100
+ * rutema_upgrader - Bug: update not performed - fixed
101
+ == 1.0.0 / 2008-10-06
102
+ * DB schema change: title and description added to scenario table
103
+ * footer parameter for the email reporter
104
+ * Specification titles included in the text reports
105
+ * When parsing multiple specifications a duplicate name will now generate a parser error
106
+ * rutema_updater upgrades existing databases, check http://patir.rubyforge.org/rutema/update_090_to_100.html
107
+ * rutemah scrapped
108
+ * rutemax logs it's version always
109
+ * activerecord 2.1.1 is now in use
110
+
111
+ == 0.9.3 / 2008-09-10
112
+ * Sorted result summaries in the text and the email reporter
113
+ * ActiveRecordReporter registration logging
114
+ == 0.9.2 / 2008-09-10
115
+ * Fixed major blunder with test reporting
116
+ * Added text reporter for consistent text summaries
117
+ * More tests
118
+ * Fixed check test behaviour (was not running even when specified in the configuration)
119
+ * Fixed bungled emailing when using multiple addresses in the config
120
+ == 0.9.1 / 2008-09-09
121
+ * Modularisation of element parsing methods introduced.
122
+ * MinimalXMLParser refactored as example.
123
+ * Extra element parser modules available in the rutema_elements gem
124
+ * Cleaned up EmailReporter. Unit tests with Mocha, text report has a better layout
125
+ == 0.9.0 / 2008-09-08
126
+ * Ability to nest scenarios added to the base parser
127
+ * Documentation at http://patir.rubyforge.org/rutema/tool_configuration.html
128
+
129
+ == 0.8.0 / 2008-07-03
130
+ * Split rutemaweb into own gem
131
+ * Refactored reporters
132
+ * Re-enabled the --step commandline facility of rutemax allowing step-by-step execution and fixed the StepRunner implementation
133
+
134
+ == 0.7.1 / 2008-06-12
135
+ * Added the ruport_formatter.rb file to the manifest (and consequently to the gem)
136
+ * Locked down the active record and ramaze versions to avoid the String#start_with? alias bug from active support 2.1.0 and the Ramaze.start! change
137
+ == 0.7.0 / 2008-05-16
138
+ * Support for tools, paths and context information in the configuration solidified (http://patir.rubyforge.org/rutema/tool_configuration.html for more)
139
+ * Changes in the configuration for Historian and ActiveRecordReporter. Check the distro_test samples
140
+ * database connection code consolidated in db.rb
141
+ * Added support for jdbc/h2 to work with jRuby
142
+ * AR-reporter configuration expanded to support different adapters. Consistent with the Historian db configuration
143
+ * rutema unit tests now run under jRuby
144
+ * rutemah runs under jRuby
145
+
146
+ == 0.6.5 / 2008-04-15
147
+ * Updated rutemaweb controller to work with ramaze 0.3.9.1
148
+ == 0.6.4 / 2008-03-30
149
+ * Bugfix: duration SQL type adjusted in the model to return proper values.
150
+ * Bugfix: name=step_type for TestStep so that name is assigned a value in the model step
151
+ * Locked the Ramaze version to 0.3.5 until we find out why the new version breaks us
152
+ == 0.6.3 / 2008-03-26
153
+ * Bugfix: specifying a .spec filename on the commandline did not work - Path expanded before changing directory.
154
+ * Bugfix: running an attended .spec on it's own was not possible - attended mode is now set for single runs.
155
+ * Cleaned up the Runner's log output
156
+ == 0.6.2 / 2008-03-12
157
+ * Parsers derived from Rutema::SpecificationParser now receive the system configuration so that conventions like tools, paths and context can be used in element_ methods (this functionality fell through the cracks with the change in parser implementation)
158
+ * rutemaweb now has proper commandline help and connects properly to the database
159
+ == 0.6.1 / 2008-02-28
160
+ * ExtensibleXMLParser made more tolerant (no exceptions when an element cannot be handled)
161
+ * Bug: Typo in the class name used in the exceptions fixed
162
+ * Bugfix: ActiveRecord connection throws an exception that prevented Historian from establishing a new one. Fixed
163
+ * More unit tests
164
+ == 0.6.0 / 2008-02-27
165
+ * Added Rutema::ExtensibleXMLParser - this parser simplifies parser creation immensely. Check the documentation for details
166
+ * "Howto create a parser v0.5.0" officially the fastest deprecation of a document ever. http://patir.rubyforge.org/rutema/parser.html is the new black.
167
+ * Corrected some english spelling mistakes (hey, we're not native speakers)
168
+ * Fixed an issue with AR cached connections that interfered with unit tests
169
+
170
+ == 0.5.0 / 2008-02-26
171
+ * activerecord reporter is now loaded by default (no need to require it in the configuration file)
172
+ * bugfix: step names correctly written in the database
173
+ * The web frontend now uses Ramaze
174
+ * using patir-0.5.3 because of the chdir bugfixes
175
+ * rutema can now test itself! rutemax and rutemah return meaningful exit codes. So there, we do eat our own dogfood
176
+ * lots more documentation on usage and how to build a parser
177
+
178
+ == 0.4.3 / 2008-02-25
179
+ * fixed bug in rutemax when the activerecord reporter is used, where the database was not created relative to the configuration entry
180
+ * fixed bug in rutemah where the report was not printed (doh!)
181
+ * added active record reporter configuration and rutemah configuration to distro test
182
+ == 0.4.2 / 2007-12-05
183
+ * rutemah code cleaned up
184
+ * Bugfix: MinimalXMLParser now handles relative paths in command elements correctly
185
+ * distro_test added to the gem
186
+ * Distro test documented, documentation pages updated
187
+ == 0.4.1 / 2007-12-04
188
+ * Documented MinimalXMLParser
189
+ * More debug logs
190
+ * Fixed bug in attribute checking for command steps in the minimal parser
191
+ * Fixed bug in specification parsing in the Coordinator (no specs were returned)
192
+ * Fixed bug in the implementation of <prompt> in the minimal parser (attended was not set)
193
+ * Fixed bug in evaluation of attended status for steps
194
+ * Fixed bug where runner would complain that attened scenarios cannot be run in unattended mode when choosing to run only attended tests
195
+ * Added Version module to better handle versioning
196
+ == 0.4 / 2007-07-05
197
+ * rutemaweb, a web interface for the db contents added
198
+ * uses WEBRick, Camping and Ruport
199
+ * offers views on all runs in the System, detailed scenario views and scenario-over-time views
200
+ * Runner now rescues all failures in scenarios
201
+ * Bugfix in setting status of attended scenario in unattended mode
202
+ * Better ruport usage in the historian
203
+ * rutemah added to the gem and manifest
204
+ * rutemax help message complete with commands
205
+ * split the AR reporter and the model
206
+ * expanded the unit tests
207
+
208
+ == 0.3 / 2007-05-30
209
+ * Reporter implementations moved to own file
210
+ * Reporter interface changed (Runner stati now passed directly as a name indexed Hash, specifications passed as well)
211
+ * ActiveRecordReporter with SQLite DB added
212
+ * rutemah (the Historian) added in tools. The Historian reads from ActiveRecordReporter databases
213
+ == 0.2 / 2007-05-21
214
+ * bin/ files included in gem
215
+ * rutemax: missing configuration file is now checked before passed to the system
216
+ == 0.1 / 2007-05-21
217
+ * A running system!
218
+ * Basic XML parser with echo, command and prompt
219
+ * email reporting
220
+ * rutemax application
data/Manifest.txt CHANGED
@@ -1,18 +1,17 @@
1
- History.txt
2
- Manifest.txt
3
- README.md
4
- bin/rutema
5
- lib/rutema/application.rb
6
- lib/rutema/core/configuration.rb
7
- lib/rutema/core/engine.rb
8
- lib/rutema/core/framework.rb
9
- lib/rutema/core/objectmodel.rb
10
- lib/rutema/core/parser.rb
11
- lib/rutema/core/reporter.rb
12
- lib/rutema/core/runner.rb
13
- lib/rutema/elements/minimal.rb
14
- lib/rutema/parsers/xml.rb
15
- lib/rutema/reporters/json.rb
16
- lib/rutema/reporters/nunit.rb
17
- lib/rutema/reporters/junit.rb
18
- lib/rutema/version.rb
1
+ History.txt
2
+ Manifest.txt
3
+ README.md
4
+ bin/rutema
5
+ lib/rutema/application.rb
6
+ lib/rutema/core/configuration.rb
7
+ lib/rutema/core/engine.rb
8
+ lib/rutema/core/framework.rb
9
+ lib/rutema/core/objectmodel.rb
10
+ lib/rutema/core/parser.rb
11
+ lib/rutema/core/reporter.rb
12
+ lib/rutema/core/runner.rb
13
+ lib/rutema/elements/minimal.rb
14
+ lib/rutema/parsers/xml.rb
15
+ lib/rutema/reporters/json.rb
16
+ lib/rutema/reporters/junit.rb
17
+ lib/rutema/version.rb