santoku 0.0.7 → 1.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/santoku.gemspec +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f3e96b1ed8dc6727e9a6fd000c91a9da0acdae3
4
- data.tar.gz: b9585d19579e422da3546ae537a9bd9928d038a1
3
+ metadata.gz: 08df6532c816c7059304ed98f442be8b0485069a
4
+ data.tar.gz: 6059e27e01cbcb8cb1e86660ad6e8afa5c72cca9
5
5
  SHA512:
6
- metadata.gz: 7ff6d526ff71e412d737016f40de087cc6c876538f64fe612d80dd4935060190551818c8aa799ec524824977f15760ea40504d8f0e497c85a8a0d8fa44a7d0f8
7
- data.tar.gz: 09373c8a5bc4d426e5ead8018e47119b871a99f26b03481ff7a43d6163804f9212c2099746ddeeb482c85c1c05ae110a4192f59d1b24dcb8a62127e7e8c4b079
6
+ metadata.gz: e4ac93108bc74be031b22866cd038a510dbf581bf969e2e351b2f63af751d0fe47ce53f22ed20bc38197ed733858adc80afad34704efb19b69a20e128823cbba
7
+ data.tar.gz: 7e37830db31ef60837b4d85a968b339a338503b8c8bd7d4172b8f5735281212464a92f49f7081831f7e9c050cc7ac9e06d5ef6e42b07e78b3b4e16c05722226d
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Santoku
2
2
  =======
3
3
 
4
- Parrallel ssh commands over chef servers with rspec-like output. Santoku uses the exit codes of a command to determine whether it qualifies as a success or failure.
4
+ Parallel ssh commands over chef servers with rspec-like output. Santoku uses the exit codes of a command to determine whether it qualifies as a success or failure.
5
5
 
6
6
  Installation
7
7
  ============
@@ -24,19 +24,19 @@ Usage
24
24
 
25
25
  Test if a given command returns 0 on all nodes:
26
26
 
27
- santoku -t 'test -d /foo/bar/'
27
+ santoku -t 'test -d /foo/bar/'
28
28
 
29
29
  Test if a given command **does not** return 0 on nodes:
30
30
 
31
- santoku -t 'php -i | grep -i memcached' --invert
31
+ santoku -t 'php -i | grep -i memcached' --invert
32
32
 
33
33
  Test if a given command returns 0 on all nodes, also print out the STDOUT of successfull commands:
34
34
 
35
- santoku -t 'cat /etc/apache2/conf.d/ssl' --print-success
35
+ santoku -t 'cat /etc/apache2/conf.d/ssl' --print-success
36
36
 
37
37
  Test if a given command returns 0, scoped on certain nodes (with [knife search syntax](http://docs.opscode.com/knife_search.html)):
38
38
 
39
- santoku -t 'test -f /etc/apache2/conf.d/ssl' 'recipe:apache AND listen_ports:443'
39
+ santoku -t 'test -f /etc/apache2/conf.d/ssl' 'recipe:apache AND listen_ports:443'
40
40
 
41
41
  ### Note
42
42
 
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'santoku'
3
- spec.version = '0.0.7'
3
+ spec.version = '1.0.0'
4
4
  spec.executables << 'santoku'
5
5
  spec.date = '2013-11-26'
6
- spec.summary = 'Parrallel ssh commands over chef servers with rspec-like output'
6
+ spec.summary = 'Parallel ssh commands over chef servers with rspec-like output'
7
7
  spec.description = 'A gem to perform command over parallel ssh connections on multiple chef serverspec. Output is rspec-like.'
8
8
  spec.authors = ['Steven De Coeyer', 'Jeroen Jacobs']
9
9
  spec.email = 'tech@openminds.be'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: santoku
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven De Coeyer
@@ -125,5 +125,5 @@ rubyforge_project:
125
125
  rubygems_version: 2.0.14
126
126
  signing_key:
127
127
  specification_version: 4
128
- summary: Parrallel ssh commands over chef servers with rspec-like output
128
+ summary: Parallel ssh commands over chef servers with rspec-like output
129
129
  test_files: []