leftright 0.0.5 → 0.0.6

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/WHATSNEW CHANGED
@@ -1,3 +1,6 @@
1
+ * 0.0.6 (2010-08-02):
2
+ - Added the 'lr' binary to run foreign test suites using leftright.
3
+
1
4
  * 0.0.5 (2010-07-31):
2
5
  - Fixed a ginormous bug when running under non-REE CRUBY. Yipes.
3
6
 
data/bin/lr ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require 'leftright'
3
+ require $0 = ARGV.first
@@ -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
@@ -1,3 +1,3 @@
1
1
  module LeftRight
2
- VERSION = '0.0.5'
2
+ VERSION = '0.0.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leftright
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
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-07-31 00:00:00 -07:00
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.5
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