mcmire-protest 0.2.4
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/.gitignore +2 -0
- data/LICENSE +22 -0
- data/README.rdoc +200 -0
- data/Rakefile +24 -0
- data/lib/protest/rails.rb +80 -0
- data/lib/protest/report.rb +121 -0
- data/lib/protest/reports/documentation.rb +77 -0
- data/lib/protest/reports/progress.rb +46 -0
- data/lib/protest/reports.rb +2 -0
- data/lib/protest/runner.rb +39 -0
- data/lib/protest/test_case.rb +248 -0
- data/lib/protest/tests.rb +90 -0
- data/lib/protest/utils/backtrace_filter.rb +25 -0
- data/lib/protest/utils/colorful_output.rb +67 -0
- data/lib/protest/utils/summaries.rb +129 -0
- data/lib/protest/utils.rb +6 -0
- data/lib/protest.rb +108 -0
- data/protest.gemspec +38 -0
- metadata +72 -0
data/protest.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "mcmire-protest"
|
3
|
+
s.version = "0.2.4"
|
4
|
+
s.date = "2009-11-14"
|
5
|
+
|
6
|
+
s.description = "Protest is a tiny, simple, and easy-to-extend test framework"
|
7
|
+
s.summary = s.description
|
8
|
+
s.homepage = "http://rubyprotest.org"
|
9
|
+
|
10
|
+
s.authors = ["Nicolás Sanguinetti"]
|
11
|
+
s.email = "contacto@nicolassanguinetti.info"
|
12
|
+
|
13
|
+
s.require_paths = ["lib"]
|
14
|
+
s.rubyforge_project = "protest"
|
15
|
+
s.has_rdoc = true
|
16
|
+
s.rubygems_version = "1.3.1"
|
17
|
+
|
18
|
+
s.files = %w[
|
19
|
+
.gitignore
|
20
|
+
LICENSE
|
21
|
+
README.rdoc
|
22
|
+
Rakefile
|
23
|
+
protest.gemspec
|
24
|
+
lib/protest.rb
|
25
|
+
lib/protest/utils.rb
|
26
|
+
lib/protest/utils/backtrace_filter.rb
|
27
|
+
lib/protest/utils/summaries.rb
|
28
|
+
lib/protest/utils/colorful_output.rb
|
29
|
+
lib/protest/test_case.rb
|
30
|
+
lib/protest/tests.rb
|
31
|
+
lib/protest/runner.rb
|
32
|
+
lib/protest/report.rb
|
33
|
+
lib/protest/reports.rb
|
34
|
+
lib/protest/reports/progress.rb
|
35
|
+
lib/protest/reports/documentation.rb
|
36
|
+
lib/protest/rails.rb
|
37
|
+
]
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mcmire-protest
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Nicol\xC3\xA1s Sanguinetti"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-11-14 00:00:00 -06:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Protest is a tiny, simple, and easy-to-extend test framework
|
17
|
+
email: contacto@nicolassanguinetti.info
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- .gitignore
|
26
|
+
- LICENSE
|
27
|
+
- README.rdoc
|
28
|
+
- Rakefile
|
29
|
+
- protest.gemspec
|
30
|
+
- lib/protest.rb
|
31
|
+
- lib/protest/utils.rb
|
32
|
+
- lib/protest/utils/backtrace_filter.rb
|
33
|
+
- lib/protest/utils/summaries.rb
|
34
|
+
- lib/protest/utils/colorful_output.rb
|
35
|
+
- lib/protest/test_case.rb
|
36
|
+
- lib/protest/tests.rb
|
37
|
+
- lib/protest/runner.rb
|
38
|
+
- lib/protest/report.rb
|
39
|
+
- lib/protest/reports.rb
|
40
|
+
- lib/protest/reports/progress.rb
|
41
|
+
- lib/protest/reports/documentation.rb
|
42
|
+
- lib/protest/rails.rb
|
43
|
+
has_rdoc: true
|
44
|
+
homepage: http://rubyprotest.org
|
45
|
+
licenses: []
|
46
|
+
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: "0"
|
63
|
+
version:
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
rubyforge_project: protest
|
67
|
+
rubygems_version: 1.3.5
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: Protest is a tiny, simple, and easy-to-extend test framework
|
71
|
+
test_files: []
|
72
|
+
|