Skip to content

Commit 63e416e

Browse files
committed
Move spun-off reporters to work folder temporarily. :admin:
1 parent c2db04e commit 63e416e

12 files changed

Lines changed: 28 additions & 20 deletions

File tree

.index

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ conflicts: []
1313
alternatives: []
1414
resources:
1515
- type: home
16-
uri: http://rubyworks.github.com/rubytest-core
16+
uri: http://rubyworks.github.com/rubytest
1717
label: Homepage
1818
- type: code
19-
uri: http://github.com/rubyworks/rubytest-core
19+
uri: http://github.com/rubyworks/rubytest
2020
label: Source Code
2121
- type: mail
2222
uri: http://groups.google.com/group/rubyworks-mailinglist
2323
label: Mailing List
2424
repositories:
2525
- name: upstream
2626
scm: git
27-
uri: git@github.com:rubyworks/rubytest-core.git
27+
uri: git@github.com:rubyworks/rubytest.git
2828
categories: []
2929
copyrights:
3030
- holder: RubyWorks
@@ -34,8 +34,8 @@ customs: []
3434
paths:
3535
lib:
3636
- lib
37-
name: rubytest-core
38-
title: Rubytest Core
37+
name: rubytest
38+
title: Rubytest
3939
version: 0.8.0
4040
summary: Ruby Universal Test Harness
4141
description: Rubytest is a universal test harness for Ruby. It can handle any compliant

HISTORY.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
## 0.8.0 / 2014-07-18
44

5-
Renamed gem to rubytest-core. The rubytest gem iteself will become a
6-
meta-gem requiring core and a set of common standard plugins.
5+
We have whittled Rubytest down to it core functionaltiy and spun the rest
6+
off as separate plugin gems. The rubytest-suite gem is a metapackage
7+
loading this gem and a set of common plugins for convenience.
78

89
Changes:
910

10-
* Rename project to `rubytest-core`.
1111
* Spin-off report formats as separate gems.
12+
* Create rubytest-suite gem for convenience.
1213

1314

1415
## 0.7.0 / 2013-02-18

Indexfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name:
3-
rubytest-core
3+
rubytest
44

55
version:
66
0.8.0
77

88
title:
9-
Rubytest Core
9+
Rubytest
1010

1111
summary:
1212
Ruby Universal Test Harness
@@ -18,12 +18,12 @@ description:
1818
necessary to run tests.
1919

2020
resources:
21-
home: http://rubyworks.github.com/rubytest-core
22-
code: http://github.com/rubyworks/rubytest-core
21+
home: http://rubyworks.github.com/rubytest
22+
code: http://github.com/rubyworks/rubytest
2323
mail: http://groups.google.com/group/rubyworks-mailinglist
2424

2525
repositories:
26-
upstream: git@github.com:rubyworks/rubytest-core.git
26+
upstream: git@github.com:rubyworks/rubytest.git
2727

2828
authors:
2929
- trans <transfire@gmail.com>

MANIFEST.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ lib/rubytest/core_ext/exception.rb
1313
lib/rubytest/core_ext/file.rb
1414
lib/rubytest/core_ext/string.rb
1515
lib/rubytest/core_ext.rb
16+
lib/rubytest/format/abstract.rb
17+
lib/rubytest/format/abstract_hash.rb
18+
lib/rubytest/format/dotprogress.rb
19+
lib/rubytest/format/test.rb
1620
lib/rubytest/recorder.rb
17-
lib/rubytest/reporters/abstract.rb
18-
lib/rubytest/reporters/abstract_hash.rb
19-
lib/rubytest/reporters/dotprogress.rb
2021
lib/rubytest/reporters/html.rb
2122
lib/rubytest/reporters/outline.rb
2223
lib/rubytest/reporters/progress.rb
2324
lib/rubytest/reporters/summary.rb
2425
lib/rubytest/reporters/tap.rb
2526
lib/rubytest/reporters/tapj.rb
2627
lib/rubytest/reporters/tapy.rb
27-
lib/rubytest/reporters/test.rb
2828
lib/rubytest/runner.rb
2929
lib/rubytest.rb
3030
lib/rubytest.yml

work/deprecated/cli.rb

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
2+
13
module Test
24

35
# Command line interface to test runner.
46
#
5-
# TODO: Use `cli` based library instead of option parser?
6-
#
77
class CLI
88

9+
# Test configuration file can be in `etc/test.rb` or `config/test.rb`, or
10+
# `Testfile` or '.test` with optional `.rb` extension, in that order of
11+
# precedence. To use a different file there is the -c/--config option.
12+
GLOB_CONFIG = '{etc/test.rb,config/test.rb,testfile.rb,testfile,.test.rb,.test}'
13+
914
# Convenience method for invoking the CLI.
1015
#
1116
# @return nothing
@@ -19,7 +24,9 @@ def self.run(*argv)
1924
def initialize
2025
require 'optparse'
2126

22-
@config = Test.configuration(true)
27+
@config = {}
28+
@config_file = nil
29+
#@config = Test.configuration(true)
2330
end
2431

2532
# Test run configuration.

0 commit comments

Comments
 (0)