tlb-testunit18 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,8 @@
1
1
  require 'rubygems'
2
2
  require 'tlb'
3
- require 'tlb/test_unit/test_splitter'
4
- require 'tlb/test_unit/test_observer'
5
- require 'test/unit/ui/testrunnermediator'
3
+ require File.join('tlb', 'test_unit', 'test_splitter')
4
+ require File.join('tlb', 'test_unit', 'test_observer')
5
+ require File.join('test', 'unit', 'ui', 'testrunnermediator')
6
6
 
7
7
  module Tlb::TestUnit::MediatorInflection
8
8
  def self.included base
@@ -1,5 +1,5 @@
1
1
  require 'tlb'
2
- require 'tlb/run_data'
2
+ require File.join('tlb', 'run_data')
3
3
 
4
4
  module Tlb::TestUnit::TestObserver
5
5
  class TestUnitRunData
@@ -1,7 +1,7 @@
1
1
  require 'rake'
2
- require 'rake/testtask'
2
+ require File.join('rake', 'testtask')
3
3
  require 'tlb'
4
- require 'tlb/util'
4
+ require File.join('tlb', 'util')
5
5
 
6
6
  class Tlb::TestUnit::TestTask < Rake::TestTask
7
7
  def initialize *args
metadata CHANGED
@@ -1,51 +1,49 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tlb-testunit18
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.3
4
5
  prerelease:
5
- version: 0.3.2
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Janmejay Singh
9
9
  - Pavan KS
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
-
14
- date: 2011-05-27 00:00:00 Z
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
13
+ date: 2013-02-19 00:00:00.000000000Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
17
16
  name: rake
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ requirement: &10610860 !ruby/object:Gem::Requirement
20
18
  none: false
21
- requirements:
22
- - - ">="
23
- - !ruby/object:Gem::Version
24
- version: "0"
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
25
23
  type: :runtime
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
28
- name: tlb-core
29
24
  prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
25
+ version_requirements: *10610860
26
+ - !ruby/object:Gem::Dependency
27
+ name: tlb-core
28
+ requirement: &10610360 !ruby/object:Gem::Requirement
31
29
  none: false
32
- requirements:
33
- - - "="
34
- - !ruby/object:Gem::Version
35
- version: 0.3.2
30
+ requirements:
31
+ - - =
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.3
36
34
  type: :runtime
37
- version_requirements: *id002
38
- description: |
39
- TLB-Ruby component that provides support for load balancing tests written using test::unit. This library consumes APIs provided by tlb-core.
35
+ prerelease: false
36
+ version_requirements: *10610360
37
+ description: ! 'TLB-Ruby component that provides support for load balancing tests
38
+ written using test::unit. This library consumes APIs provided by tlb-core.
40
39
 
40
+ '
41
41
  email: singh.janmejay@gmail.com;itspanzi@gmail.com
42
42
  executables: []
43
-
44
43
  extensions: []
45
-
46
- extra_rdoc_files:
44
+ extra_rdoc_files:
47
45
  - README.markdown
48
- files:
46
+ files:
49
47
  - testunit/lib/tlb/test_unit/mediator_inflection.rb
50
48
  - testunit/lib/tlb/test_unit/test_observer.rb
51
49
  - testunit/lib/tlb/test_unit/test_splitter.rb
@@ -53,50 +51,70 @@ files:
53
51
  - README.markdown
54
52
  homepage: http://github.com/test-load-balancer/tlb.rb
55
53
  licenses: []
54
+ post_install_message: ! '=========================================================================
55
+
56
+ Documentation: Detailed configuration documentation can be found at http://test-load-balancer.github.com.
57
+ Documentation section in this website hosts documentation for every public release.
58
+
56
59
 
57
- post_install_message: |
58
- =========================================================================
59
- Documentation: Detailed configuration documentation can be found at http://test-load-balancer.github.com. Documentation section in this website hosts documentation for every public release.
60
-
61
60
  -------------------------------------------------------------------------
62
- TLB Setup: You'll need a TLB-Server in your network that is reachable over the network from the machines you use to execute your project's test-suite. Please refer the TLB documentation for details.
63
-
61
+
62
+ TLB Setup: You''ll need a TLB-Server in your network that is reachable over the
63
+ network from the machines you use to execute your project''s test-suite. Please
64
+ refer the TLB documentation for details.
65
+
66
+
64
67
  -------------------------------------------------------------------------
65
- Example(s): We maintain a directory of tlb-enabled dummy projects written in different languages using different testing and build frameworks to help new TLB users get started and provide users a working project to refer to while hooking up TLB on their project(s).
66
- Each of these projects have a shell script(named run_balanced.sh) that is meant to demonstrate a typical tlb-enabled build(by starting a local tlb server, and executing two partitions that run dummy tests locally). This script also starts its own server(so you do not need to worry about the TLB server for trying it out).
67
- We recommend playing with the configuration-variable values being set in the shell-script(s) to understand the effect different values have on load-balancing/reordering behavior.
68
-
68
+
69
+ Example(s): We maintain a directory of tlb-enabled dummy projects written in different
70
+ languages using different testing and build frameworks to help new TLB users get
71
+ started and provide users a working project to refer to while hooking up TLB on
72
+ their project(s).
73
+
74
+ Each of these projects have a shell script(named run_balanced.sh) that is meant
75
+ to demonstrate a typical tlb-enabled build(by starting a local tlb server, and executing
76
+ two partitions that run dummy tests locally). This script also starts its own server(so
77
+ you do not need to worry about the TLB server for trying it out).
78
+
79
+ We recommend playing with the configuration-variable values being set in the shell-script(s)
80
+ to understand the effect different values have on load-balancing/reordering behavior.
81
+
82
+
69
83
  Examples archive is released along-with TLB and is available for download at http://code.google.com/p/tlb/downloads/list.
70
-
71
- To execute the example project, drop into the example project directory(examples/rspec2_example for instance) and invoke the './run_balanced.sh'.
72
-
84
+
85
+
86
+ To execute the example project, drop into the example project directory(examples/rspec2_example
87
+ for instance) and invoke the ''./run_balanced.sh''.
88
+
89
+
73
90
  -------------------------------------------------------------------------
91
+
74
92
  Issue Tracker: http://code.google.com/p/tlb/issues/list
75
-
93
+
94
+
76
95
  =========================================================================
77
96
 
78
- rdoc_options:
97
+ '
98
+ rdoc_options:
79
99
  - --charset=UTF-8
80
- require_paths:
100
+ require_paths:
81
101
  - testunit/lib
82
- required_ruby_version: !ruby/object:Gem::Requirement
102
+ required_ruby_version: !ruby/object:Gem::Requirement
83
103
  none: false
84
- requirements:
104
+ requirements:
85
105
  - - <
86
- - !ruby/object:Gem::Version
87
- version: "1.9"
88
- required_rubygems_version: !ruby/object:Gem::Requirement
106
+ - !ruby/object:Gem::Version
107
+ version: '1.9'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
109
  none: false
90
- requirements:
91
- - - ">="
92
- - !ruby/object:Gem::Version
93
- version: "0"
110
+ requirements:
111
+ - - ! '>='
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
94
114
  requirements: []
95
-
96
115
  rubyforge_project: tlb-rb
97
- rubygems_version: 1.8.3
116
+ rubygems_version: 1.8.10
98
117
  signing_key:
99
118
  specification_version: 3
100
- summary: tlb-testunit18-0.3.2
119
+ summary: tlb-testunit18-0.3.3
101
120
  test_files: []
102
-