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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 563d71bbe20f53566a06c0629a80ce6e33db05a1
4
- data.tar.gz: 38e305e7cdfe54117c905894be79b6dbaf7507f7
3
+ metadata.gz: 572e40ff9fc3d1ca944dc56dd89bcffad2ad4067
4
+ data.tar.gz: f6ce85160caba5a4db92e1a8b5a5f7e1473b3a73
5
5
  SHA512:
6
- metadata.gz: 832d40d55657589d91d9963e676dd361e6ce989bdcd7b732a7a1fa993be1c702dc188ed71e15103f5bf9cb2122f87426e5d5f1f9fa5e0b78fc230b1a09878c6c
7
- data.tar.gz: 356ce42953d81ada654d99e51f7aa6d52300b9e4b8686df98ecb714a5787aedb38af16998401820cd6a3324b0908fd96a52b2bae806f3c1e6e4a25b01ff90b38
6
+ metadata.gz: 637bb2dc777e5361107e359e7c2b1d5ae6e6d15771e52454a50ca1a732cecd0c88ce0825adcd0e734b586677b788e6d744a2efce46a2b1a166665889e4039cd7
7
+ data.tar.gz: 069320dd04b40b82d821682d30be2abd8c7520acbe13f595cf4f42d8615c1122197f240c52fbada336d7090899114c44b29610303387d8f0f967a2a57ad5423d
@@ -0,0 +1,4 @@
1
+ lib/**/*.rb
2
+ -
3
+ README.md
4
+ CHANGELOG.md
@@ -1,3 +1,7 @@
1
+ ## 0.1.1 (2015-04-27)
2
+
3
+ * Improved documentation (using [Yardoc](http://yardoc.org/))
4
+
1
5
  ## 0.1.0 (2015-04-25)
2
6
 
3
7
  * Initial release
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
- Command line utility [cwb-client] acts as the client library in cloud VMs and allows for local testing (if not configured against a cwb-server).
4
- CWB Client helps you implement your own suites of benchmarks and optionally integrates them with the CWB framework.
5
- See https://github.com/sealuzh/cloud-workbench
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
+ * [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/gems/cwb/)
11
+ * [Cwb::Client Docs](http://www.rubydoc.info/gems/cwb/Cwb/Client)
12
+ * [![Gem Version](https://badge.fury.io/rb/cwb.svg)](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
- $ bundle
23
+ bundle
16
24
 
17
25
  Or install it yourself as:
18
26
 
19
- $ gem install cwb
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
- ## Usage
42
+ Bump version in `lib/cwb/version.rb`
22
43
 
23
- See `Cwb::Client` Yardoc
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
 
@@ -1,3 +1,3 @@
1
1
  module Cwb
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-25 00:00:00.000000000 Z
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