cwb 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/.yardopts +4 -0
- data/CHANGELOG.md +4 -0
- data/Guardfile +1 -1
- data/README.md +33 -8
- data/lib/cwb/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 572e40ff9fc3d1ca944dc56dd89bcffad2ad4067
|
4
|
+
data.tar.gz: f6ce85160caba5a4db92e1a8b5a5f7e1473b3a73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 637bb2dc777e5361107e359e7c2b1d5ae6e6d15771e52454a50ca1a732cecd0c88ce0825adcd0e734b586677b788e6d744a2efce46a2b1a166665889e4039cd7
|
7
|
+
data.tar.gz: 069320dd04b40b82d821682d30be2abd8c7520acbe13f595cf4f42d8615c1122197f240c52fbada336d7090899114c44b29610303387d8f0f967a2a57ad5423d
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
data/Guardfile
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
# * zeus: 'zeus rspec' (requires the server to be started separately)
|
33
33
|
# * 'just' rspec: 'rspec'
|
34
34
|
|
35
|
-
guard :rspec, cmd: "bundle exec rspec" do
|
35
|
+
guard :rspec, cmd: "bundle exec rspec", all_on_start: true do
|
36
36
|
require "guard/rspec/dsl"
|
37
37
|
dsl = Guard::RSpec::Dsl.new(self)
|
38
38
|
|
data/README.md
CHANGED
@@ -1,26 +1,51 @@
|
|
1
1
|
# Cloud WorkBench Client (CWB Client)
|
2
2
|
|
3
|
-
|
4
|
-
CWB Client helps you
|
5
|
-
|
3
|
+
This command line utility [cwb-client] consitutes the cwb client library in cloud VMs and supports local benchmark testing.
|
4
|
+
CWB Client helps you implementing your own suites of benchmarks and optionally integrates them with the CWB framework.
|
5
|
+
|
6
|
+
|
7
|
+
## Quicklinks
|
8
|
+
* CWB Server: https://github.com/sealuzh/cloud-workbench
|
9
|
+
* CWB Cookbook *(Chef)*: https://github.com/sealuzh/cwb-benchmarks/tree/master/cwb
|
10
|
+
* [](http://www.rubydoc.info/gems/cwb/)
|
11
|
+
* [Cwb::Client Docs](http://www.rubydoc.info/gems/cwb/Cwb/Client)
|
12
|
+
* [](https://rubygems.org/gems/cwb)
|
13
|
+
|
6
14
|
|
7
15
|
## Installation
|
8
16
|
|
9
17
|
Add this line to your application's Gemfile:
|
10
18
|
|
11
|
-
gem 'cwb'
|
19
|
+
gem 'cwb', '~> 0.1.0'
|
12
20
|
|
13
21
|
And then execute:
|
14
22
|
|
15
|
-
|
23
|
+
bundle
|
16
24
|
|
17
25
|
Or install it yourself as:
|
18
26
|
|
19
|
-
|
27
|
+
gem install cwb
|
28
|
+
|
29
|
+
|
30
|
+
## Development
|
31
|
+
|
32
|
+
### Run Tests
|
33
|
+
|
34
|
+
Guard will watch your files and automatically run the tests. Type `all` to run all tests.
|
35
|
+
|
36
|
+
```bash
|
37
|
+
guard
|
38
|
+
```
|
39
|
+
|
40
|
+
### Publish to RubyGems (only owners)
|
20
41
|
|
21
|
-
|
42
|
+
Bump version in `lib/cwb/version.rb`
|
22
43
|
|
23
|
-
|
44
|
+
```bash
|
45
|
+
rake build
|
46
|
+
gem push pkg/cwb-0.1.X.gem
|
47
|
+
git tag -a v0.1.X -m 'COMMENT'
|
48
|
+
```
|
24
49
|
|
25
50
|
## Contributing
|
26
51
|
|
data/lib/cwb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cwb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Scheuner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -146,6 +146,7 @@ extra_rdoc_files: []
|
|
146
146
|
files:
|
147
147
|
- ".gitignore"
|
148
148
|
- ".rspec"
|
149
|
+
- ".yardopts"
|
149
150
|
- CHANGELOG.md
|
150
151
|
- Gemfile
|
151
152
|
- Guardfile
|