minitest-colorize 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +10 -3
- data/MIT-LICENSE +20 -0
- data/README.markdown +19 -6
- data/lib/minitest/colorize/version.rb +1 -1
- data/minitest-colorize.gemspec +2 -2
- metadata +66 -53
data/.travis.yml
CHANGED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011-2013 Gabriel Sobrinho, http://gabrielsobrinho.com
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
CHANGED
@@ -1,10 +1,23 @@
|
|
1
|
-
MiniTest Colorize
|
2
|
-
=================
|
1
|
+
# MiniTest Colorize
|
3
2
|
|
4
|
-
Colorize
|
3
|
+
Colorize minitest output and show failing tests instantly.
|
5
4
|
|
5
|
+
![minitest-colorize screenshot](https://github.com/sobrinho/minitest-colorize/raw/master/examples/example.png)
|
6
6
|
|
7
|
-
|
8
|
-
========
|
7
|
+
## Installation
|
9
8
|
|
10
|
-
|
9
|
+
Add it to your Gemfile:
|
10
|
+
|
11
|
+
``` ruby
|
12
|
+
gem 'minitest-colorize'
|
13
|
+
```
|
14
|
+
|
15
|
+
Run the following command to install it:
|
16
|
+
|
17
|
+
``` bash
|
18
|
+
bundle install
|
19
|
+
```
|
20
|
+
|
21
|
+
## License
|
22
|
+
|
23
|
+
MIT License. Copyright 2011-2013 Gabriel Sobrinho, http://gabrielsobrinho.com
|
data/minitest-colorize.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = MiniTest::Colorize::VERSION
|
8
8
|
s.authors = ["Gabriel Sobrinho"]
|
9
9
|
s.email = ["gabriel.sobrinho@gmail.com"]
|
10
|
-
s.homepage = ""
|
10
|
+
s.homepage = "https://github.com/sobrinho/minitest-colorize"
|
11
11
|
s.summary = %q{Colorize MiniTest output and show failing tests instantly}
|
12
12
|
s.description = %q{Colorize MiniTest output and show failing tests instantly}
|
13
13
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
17
|
s.require_paths = ["lib"]
|
18
18
|
|
19
|
-
s.add_dependency 'minitest', '
|
19
|
+
s.add_dependency 'minitest', '>= 2.0'
|
20
20
|
s.add_development_dependency 'rake', '>= 0.8.7'
|
21
21
|
s.add_development_dependency 'mocha', '>= 0.9.12'
|
22
22
|
end
|
metadata
CHANGED
@@ -1,65 +1,76 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest-colorize
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.5
|
4
5
|
prerelease:
|
5
|
-
version: 0.0.4
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Gabriel Sobrinho
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2013-02-19 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
17
15
|
name: minitest
|
18
|
-
|
19
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
20
17
|
none: false
|
21
|
-
requirements:
|
22
|
-
- -
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version:
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.0'
|
25
22
|
type: :runtime
|
26
|
-
version_requirements: *id001
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
23
|
prerelease: false
|
30
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
31
33
|
none: false
|
32
|
-
requirements:
|
33
|
-
- -
|
34
|
-
- !ruby/object:Gem::Version
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
35
37
|
version: 0.8.7
|
36
38
|
type: :development
|
37
|
-
version_requirements: *id002
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
name: mocha
|
40
39
|
prerelease: false
|
41
|
-
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
41
|
none: false
|
43
|
-
requirements:
|
44
|
-
- -
|
45
|
-
- !ruby/object:Gem::Version
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 0.8.7
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: mocha
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
46
53
|
version: 0.9.12
|
47
54
|
type: :development
|
48
|
-
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.9.12
|
49
62
|
description: Colorize MiniTest output and show failing tests instantly
|
50
|
-
email:
|
63
|
+
email:
|
51
64
|
- gabriel.sobrinho@gmail.com
|
52
65
|
executables: []
|
53
|
-
|
54
66
|
extensions: []
|
55
|
-
|
56
67
|
extra_rdoc_files: []
|
57
|
-
|
58
|
-
files:
|
68
|
+
files:
|
59
69
|
- .gitignore
|
60
70
|
- .travis.yml
|
61
71
|
- CHANGELOG
|
62
72
|
- Gemfile
|
73
|
+
- MIT-LICENSE
|
63
74
|
- README.markdown
|
64
75
|
- Rakefile
|
65
76
|
- examples/example.png
|
@@ -70,34 +81,36 @@ files:
|
|
70
81
|
- minitest-colorize.gemspec
|
71
82
|
- test/minitest_colorize_test.rb
|
72
83
|
- test/test_helper.rb
|
73
|
-
|
74
|
-
homepage: ""
|
84
|
+
homepage: https://github.com/sobrinho/minitest-colorize
|
75
85
|
licenses: []
|
76
|
-
|
77
86
|
post_install_message:
|
78
87
|
rdoc_options: []
|
79
|
-
|
80
|
-
require_paths:
|
88
|
+
require_paths:
|
81
89
|
- lib
|
82
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
91
|
none: false
|
84
|
-
requirements:
|
85
|
-
- -
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version:
|
88
|
-
|
92
|
+
requirements:
|
93
|
+
- - ! '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
hash: 62397096593277513
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
100
|
none: false
|
90
|
-
requirements:
|
91
|
-
- -
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version:
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
segments:
|
106
|
+
- 0
|
107
|
+
hash: 62397096593277513
|
94
108
|
requirements: []
|
95
|
-
|
96
109
|
rubyforge_project:
|
97
|
-
rubygems_version: 1.
|
110
|
+
rubygems_version: 1.8.23
|
98
111
|
signing_key:
|
99
112
|
specification_version: 3
|
100
113
|
summary: Colorize MiniTest output and show failing tests instantly
|
101
|
-
test_files:
|
114
|
+
test_files:
|
102
115
|
- test/minitest_colorize_test.rb
|
103
116
|
- test/test_helper.rb
|