purest 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/lib/purest/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab3ac73c9fc141dddadde6ec8435dcad4f40ff1011badec4ecdad573f0f2c166
4
- data.tar.gz: b82e8f475af0b06238acd863ace402d9503acfb1d1d07f3e777a777934cafba9
3
+ metadata.gz: daf312e4a9f4e684d30ff143073640fb0c383b56b1d44f0c8b9b3550195c6a9e
4
+ data.tar.gz: a6afeef48fe986433d07b9f14b379c3a96226459370025d93693d0041e8ba2cc
5
5
  SHA512:
6
- metadata.gz: ae3956cd6d9e11df30da2a7988fe5c4dbad2e91afff3913610d14775af84baef36104d327caf75cd4eb541d310554758d10389cf80e0b6740ec1f1e3d134e776
7
- data.tar.gz: a21f3ca95452314c9e3ceeb283979a0903c8471a4fc468fdb69d9f2a91e3cffdecec42954de4dd4f114dee00eca5ae9540d8b84bf8b6af6393dd4f4b1efced7d
6
+ metadata.gz: cdcb8d67a737212753332272d25f6d1edd00a80300f41ac0696ea289acabca7a31b7106713a37f881ad2651c2544a3e106531ac579761a34b7a2b78f71baba03
7
+ data.tar.gz: ac4bed40d5ded45656de62b9e306a6807f4c0afd388e93e75235652610d31da75c70ae1d32b9c0a0952268f38874147afdfade5ded33e56553a27ec3d4c9b3c7
data/README.md CHANGED
@@ -9,7 +9,7 @@ This started as sort of a labor of love/learning exercise, and sort of blossomed
9
9
 
10
10
  2) I am not affiliated with Pure Storage, beyond the fact that my company uses their product.
11
11
 
12
- 3) While all of the classes exist, currently only up to API version 1.11 is supported.
12
+ 3) While all of the classes exist, currently only up to API version 1.11 is supported.
13
13
 
14
14
  ## Requirements
15
15
 
@@ -21,7 +21,7 @@ This library requires you use Ruby 2.3 or above.
21
21
 
22
22
  ## Configuration
23
23
 
24
- ```
24
+ ```rb
25
25
  require 'purest'
26
26
 
27
27
  Purest.configure do |config|
@@ -339,7 +339,7 @@ Purest::PhysicalArray.update(new_name: 'new_name')
339
339
  Disconnect the current array from a specified array:
340
340
  ```ruby
341
341
  # Given that your pure is purehost.yourdomain.com, as defined in the config block above
342
- # Disconnect purehost2.yourdomain.com from yours
342
+ # Disconnect purehost2.yourdomain.com from purehost.yourdomain.com
343
343
  Purest::PhysicalArray.delete(name: 'purehost2.yourdomain.com')
344
344
  ```
345
345
 
@@ -409,7 +409,7 @@ Purest::SNMP.create(name: 'snmp-manager1', host: 'snmp.yourdomain.com')
409
409
  Purest::SNMP.create(name: 'snmp-manager1', host: '111.11.11.111:222')
410
410
 
411
411
  # For those brave few; the strong souls using IPv6 with a custom port
412
- Purest::SNMP.create(:name: 'snmp-manager1', :host: '[2001:db8:0:1]:222')
412
+ Purest::SNMP.create(name: 'snmp-manager1', host: '[2001:db8:0:1]:222')
413
413
  ```
414
414
 
415
415
  Updating an existing SNMP manager
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Purest
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean McKinley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-24 00:00:00.000000000 Z
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber