tlb-rspec1 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- require 'spec/runner/formatter/silent_formatter'
1
+ require File.join('spec', 'runner', 'formatter', 'silent_formatter')
2
2
  require 'rubygems'
3
3
  require 'tlb'
4
4
 
@@ -1,6 +1,6 @@
1
- require 'spec/rake/spectask'
1
+ require File.join('spec', 'rake', 'spectask')
2
2
  require 'tlb'
3
- require 'tlb/util'
3
+ require File.join('tlb', 'util')
4
4
 
5
5
  class Tlb::SpecTask < Spec::Rake::SpecTask
6
6
  attr_accessor :tlb_out
metadata CHANGED
@@ -1,114 +1,132 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tlb-rspec1
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: &8516260 !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: *8516260
26
+ - !ruby/object:Gem::Dependency
27
+ name: tlb-core
28
+ requirement: &8515760 !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
- - !ruby/object:Gem::Dependency
39
- name: rspec
40
35
  prerelease: false
41
- requirement: &id003 !ruby/object:Gem::Requirement
36
+ version_requirements: *8515760
37
+ - !ruby/object:Gem::Dependency
38
+ name: rspec
39
+ requirement: &8515280 !ruby/object:Gem::Requirement
42
40
  none: false
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
46
44
  version: 1.3.0
47
45
  - - <
48
- - !ruby/object:Gem::Version
46
+ - !ruby/object:Gem::Version
49
47
  version: 2.0.0
50
48
  type: :runtime
51
- version_requirements: *id003
52
- description: |
53
- TLB-Ruby component that provides support for load balancing tests written using rspec-1.x. This library consumes APIs provided by tlb-core.
49
+ prerelease: false
50
+ version_requirements: *8515280
51
+ description: ! 'TLB-Ruby component that provides support for load balancing tests
52
+ written using rspec-1.x. This library consumes APIs provided by tlb-core.
54
53
 
54
+ '
55
55
  email: singh.janmejay@gmail.com;itspanzi@gmail.com
56
56
  executables: []
57
-
58
57
  extensions: []
59
-
60
- extra_rdoc_files:
58
+ extra_rdoc_files:
61
59
  - README.markdown
62
- files:
60
+ files:
63
61
  - rspec1/lib/tlb/spec/spec_formatter.rb
64
62
  - rspec1/lib/tlb/spec/spec_task.rb
65
63
  - README.markdown
66
64
  homepage: http://github.com/test-load-balancer/tlb.rb
67
65
  licenses: []
66
+ post_install_message: ! '=========================================================================
67
+
68
+ Documentation: Detailed configuration documentation can be found at http://test-load-balancer.github.com.
69
+ Documentation section in this website hosts documentation for every public release.
70
+
68
71
 
69
- post_install_message: |
70
- =========================================================================
71
- 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.
72
-
73
72
  -------------------------------------------------------------------------
74
- 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.
75
-
73
+
74
+ TLB Setup: You''ll need a TLB-Server in your network that is reachable over the
75
+ network from the machines you use to execute your project''s test-suite. Please
76
+ refer the TLB documentation for details.
77
+
78
+
76
79
  -------------------------------------------------------------------------
77
- 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).
78
- 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).
79
- 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.
80
-
80
+
81
+ Example(s): We maintain a directory of tlb-enabled dummy projects written in different
82
+ languages using different testing and build frameworks to help new TLB users get
83
+ started and provide users a working project to refer to while hooking up TLB on
84
+ their project(s).
85
+
86
+ Each of these projects have a shell script(named run_balanced.sh) that is meant
87
+ to demonstrate a typical tlb-enabled build(by starting a local tlb server, and executing
88
+ two partitions that run dummy tests locally). This script also starts its own server(so
89
+ you do not need to worry about the TLB server for trying it out).
90
+
91
+ We recommend playing with the configuration-variable values being set in the shell-script(s)
92
+ to understand the effect different values have on load-balancing/reordering behavior.
93
+
94
+
81
95
  Examples archive is released along-with TLB and is available for download at http://code.google.com/p/tlb/downloads/list.
82
-
83
- To execute the example project, drop into the example project directory(examples/rspec2_example for instance) and invoke the './run_balanced.sh'.
84
-
96
+
97
+
98
+ To execute the example project, drop into the example project directory(examples/rspec2_example
99
+ for instance) and invoke the ''./run_balanced.sh''.
100
+
101
+
85
102
  -------------------------------------------------------------------------
103
+
86
104
  Issue Tracker: http://code.google.com/p/tlb/issues/list
87
-
105
+
106
+
88
107
  =========================================================================
89
108
 
90
- rdoc_options:
109
+ '
110
+ rdoc_options:
91
111
  - --charset=UTF-8
92
- require_paths:
112
+ require_paths:
93
113
  - rspec1/lib
94
- required_ruby_version: !ruby/object:Gem::Requirement
114
+ required_ruby_version: !ruby/object:Gem::Requirement
95
115
  none: false
96
- requirements:
97
- - - ">="
98
- - !ruby/object:Gem::Version
99
- version: "0"
100
- required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ! '>='
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
121
  none: false
102
- requirements:
103
- - - ">="
104
- - !ruby/object:Gem::Version
105
- version: "0"
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
106
126
  requirements: []
107
-
108
127
  rubyforge_project: tlb-rb
109
- rubygems_version: 1.8.3
128
+ rubygems_version: 1.8.10
110
129
  signing_key:
111
130
  specification_version: 3
112
- summary: tlb-rspec1-0.3.2
131
+ summary: tlb-rspec1-0.3.3
113
132
  test_files: []
114
-