leftright 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/WHATSNEW +3 -0
- data/bin/lr +3 -0
- data/leftright.gemspec +4 -0
- data/lib/leftright/version.rb +1 -1
- metadata +20 -7
data/WHATSNEW
CHANGED
data/bin/lr
ADDED
data/leftright.gemspec
CHANGED
@@ -19,6 +19,8 @@ Gem::Specification.new do |gem|
|
|
19
19
|
MIT-LICENSE
|
20
20
|
README.rdoc
|
21
21
|
WHATSNEW
|
22
|
+
bin
|
23
|
+
bin/lr
|
22
24
|
leftright.gemspec
|
23
25
|
lib
|
24
26
|
lib/leftright.rb
|
@@ -30,4 +32,6 @@ Gem::Specification.new do |gem|
|
|
30
32
|
lib/leftright/version.rb
|
31
33
|
lib/leftright/force_tty.rb
|
32
34
|
]
|
35
|
+
|
36
|
+
gem.executables = 'lr'
|
33
37
|
end
|
data/lib/leftright/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: leftright
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 19
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 6
|
10
|
+
version: 0.0.6
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Jordi Bunster
|
@@ -9,14 +15,14 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date: 2010-
|
18
|
+
date: 2010-08-02 00:00:00 -07:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
16
22
|
description: leftright is kind of like the redgreen gem. It makes passing tests look green, exceptions yellow, and failures red. It also has a few features that make your workflow a bit faster (see README).
|
17
23
|
email: jordi@bunster.org
|
18
|
-
executables:
|
19
|
-
|
24
|
+
executables:
|
25
|
+
- lr
|
20
26
|
extensions: []
|
21
27
|
|
22
28
|
extra_rdoc_files: []
|
@@ -25,6 +31,7 @@ files:
|
|
25
31
|
- MIT-LICENSE
|
26
32
|
- README.rdoc
|
27
33
|
- WHATSNEW
|
34
|
+
- bin/lr
|
28
35
|
- leftright.gemspec
|
29
36
|
- lib/leftright.rb
|
30
37
|
- lib/leftright/autorun.rb
|
@@ -43,21 +50,27 @@ rdoc_options: []
|
|
43
50
|
require_paths:
|
44
51
|
- lib
|
45
52
|
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
46
54
|
requirements:
|
47
55
|
- - ">="
|
48
56
|
- !ruby/object:Gem::Version
|
57
|
+
hash: 3
|
58
|
+
segments:
|
59
|
+
- 0
|
49
60
|
version: "0"
|
50
|
-
version:
|
51
61
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
52
63
|
requirements:
|
53
64
|
- - ">="
|
54
65
|
- !ruby/object:Gem::Version
|
66
|
+
hash: 3
|
67
|
+
segments:
|
68
|
+
- 0
|
55
69
|
version: "0"
|
56
|
-
version:
|
57
70
|
requirements: []
|
58
71
|
|
59
72
|
rubyforge_project:
|
60
|
-
rubygems_version: 1.3.
|
73
|
+
rubygems_version: 1.3.7
|
61
74
|
signing_key:
|
62
75
|
specification_version: 3
|
63
76
|
summary: Cool replacement for Test::Unit's TestRunner
|