Project
Reverse Dependencies for rutema
The projects listed here declare rutema as a runtime or development dependency
0.0
== DESCRIPTION:
Rutema Elements modules are the easiest way to add functionality to rutema parsers.
Just derive your parser from the basic rutema parser and include the module of your choice
class MyParser < Rutema::MinimalXMLParser
include Rutema::Elements::IIS
include Rutema::Elements::Standard
end
and voila! your parser now understands how to reset IIS, wait and fail!
== FEATURES/PROBLEMS:
Easy addition of extra functionality for rutema
IIS, MSTest and SQLServer modules are windows specific as they use the MS commandline tools
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
== DESCRIPTION: rutemaweb is the web frontend for rutema. It can be used as a viewer for database files created with the rutema ActiveRecord reporter. It also provides you with some basic statistics about the tests in your database in the form of diagrams of debatable aesthetics but undoubtable value! == FEATURES/PROBLEMS: == SYNOPSIS: rutemaweb [results.db] and browse to http://localhost:7000 for the glorious view == REQUIREMENTS: * patir (http://patir.rubyforge.org) * activerecord (http://ar.rubyonrails.com/) * sqlite3 (http://rubyforge.org/projects/sqlite-ruby/) * ramaze (http://www.ramaze.net/) * ruport (http://rubyreports.org/) * acts_as_reportable * erubis * gruff/RMagick (optional, but needed if you want to see the statistics graphs)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
== DESCRIPTION:
rutema_web is the web frontend for rutema.
It can be used as a viewer for database files created with the rutema ActiveRecord reporter.
It also provides you with some basic statistics about the tests in your database in the form of
diagrams of debatable aesthetics but undoubtable value!
== SYNOPSIS:
rutema_web config.yaml and browse to http://localhost:7000 for the glorious view
Here is a sample of the configuration YAML:
---
:db:
:adapter: sqlite3
:database: rutema_test.db
:settings:
:page_size: 10
:last_n_runs: 20
:port: 7000
:show_setup_teardown: true
The :db: section should be the activerecord adapter configuration. The :settings: section controls the behaviour of the web app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity