baracus 0.1 → 0.2
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/bin/baracus +6 -10
- data/lib/config.rb +3 -0
- data/lib/httperf.rb +4 -0
- data/lib/results.rb +3 -0
- metadata +2 -2
data/bin/baracus
CHANGED
@@ -23,18 +23,14 @@
|
|
23
23
|
## FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
24
24
|
## OTHER DEALINGS IN THE SOFTWARE.
|
25
25
|
|
26
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
27
|
+
|
26
28
|
require 'rubygems'
|
27
29
|
require 'rest_client'
|
28
|
-
|
29
|
-
require '
|
30
|
-
|
31
|
-
require '
|
32
|
-
require 'base64'
|
33
|
-
require 'yaml'
|
34
|
-
|
35
|
-
require 'lib/config'
|
36
|
-
require 'lib/httperf'
|
37
|
-
require 'lib/results'
|
30
|
+
|
31
|
+
require 'config'
|
32
|
+
require 'httperf'
|
33
|
+
require 'results'
|
38
34
|
|
39
35
|
class Baracus
|
40
36
|
|
data/lib/config.rb
CHANGED
data/lib/httperf.rb
CHANGED
data/lib/results.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: baracus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
4
|
+
version: "0.2"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- joe williams
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-11-
|
12
|
+
date: 2009-11-03 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|