paknife 0.0.6 → 0.0.7

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: bca870d53bfd6d690e0e82382be3cbc60829adc8
4
- data.tar.gz: f8d3ac0dfe5d9c3cf50fc82f99e2b0a67f655d2a
3
+ metadata.gz: 2104e246aac18891fdd7a92d67517e1e56034f24
4
+ data.tar.gz: 0e81a7f5f918aaa6818b13743ff430615ad031d6
5
5
  SHA512:
6
- metadata.gz: bca71ede71f52a8834b84af345566e3c6b25556c8a625eba1a81b03f652f13170b277ce599b000a3e264409d67e949f22e4a813e204a028dfd78ca90c8436641
7
- data.tar.gz: e31008fbfd8a20d8539767642f96ecffc9b5fdf612a317b50b2be99068fd85e7a8f560da1aa1ab041c0437d6cb5026ba61eda8ad036dcd09d4e67f268b90dfa9
6
+ metadata.gz: 813466501f0f305fc05503ad9e90aa10346816f342b0b78264b6243b978d288f2406671d1fa3bf6d595bb64073b420bbce4a4e12263a9426b13326ff6d9206f8
7
+ data.tar.gz: ec8d52385d7c282e565a95d1482c0c01548de4071b35d63fe271b68d7ec07ba3575b364961106985f4bb512675554487ec9ae2944c8426c956157cb0588d0fc8
data/README.md CHANGED
@@ -54,9 +54,9 @@ or
54
54
 
55
55
  where `max` means "the number of nodes".
56
56
 
57
- This feature is also available with `PARAKNIFE_THREADS` environment variable like:
57
+ This feature is also available with `PAKNIFE_THREADS` environment variable like:
58
58
 
59
- $ export PARAKNIFE_THREADS=max
59
+ $ export PAKNIFE_THREADS=max
60
60
  $ paknife solo cook node1 node2 node3 node4
61
61
 
62
62
  ### Knife command
@@ -65,9 +65,9 @@ You can specify knife command with `--knife VALUE` and `-k VALUE` options like:
65
65
 
66
66
  $ paknife --knife="/path/to/your/knife" solo cook node1 node2
67
67
 
68
- This feature is also available with `PARAKNIFE_KNIFE` environment variable like:
68
+ This feature is also available with `PAKNIFE_KNIFE` environment variable like:
69
69
 
70
- $ export PARAKNIFE_KNIFE=/path/to/your/knife
70
+ $ export PAKNIFE_KNIFE=/path/to/your/knife
71
71
  $ paknife solo cook node1 node2
72
72
 
73
73
  ## Contributing
@@ -122,11 +122,11 @@ USAGE
122
122
  end
123
123
 
124
124
  def determine_knife
125
- @options[:knife] || ENV["PARAKNIFE_KNIFE"] || DEFAULT_KNIFE
125
+ @options[:knife] || ENV["PAKNIFE_KNIFE"] || DEFAULT_KNIFE
126
126
  end
127
127
 
128
128
  def determine_threads
129
- threads = @options[:threads] || ENV["PARAKNIFE_THREADS"] || DEFAULT_THREADS
129
+ threads = @options[:threads] || ENV["PAKNIFE_THREADS"] || DEFAULT_THREADS
130
130
 
131
131
  if threads.to_s.downcase == "max"
132
132
  @contexts.count
@@ -1,3 +1,3 @@
1
1
  module Paknife
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paknife
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masato Ikeda