purest 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1381388a9be22cc09d534c946030f31072042c81990b68142eabc083f4bce6b8
4
- data.tar.gz: 361094c5b91371f037f06e387d2c6771b992fb99deccbd134084078e9b09a3b0
3
+ metadata.gz: 39e177ed2d3cf0ba903e3fb03b415ec27e010df415a1a967257f1af13b9f007e
4
+ data.tar.gz: 4e8a9a979354ed87f239c7185fffed070d9c548a568f4e2436f95ec63b1faf75
5
5
  SHA512:
6
- metadata.gz: 4d19cc24337a4862de80ae8abff68b5ca99b465c0a2be6852674b8c4d3c1c6c315af39564549c6882ad3ccd81c2d78421845131dc762a41e64e5fdb5c3fc0c93
7
- data.tar.gz: '0297f830232b16953ced49597c9c45e98cdf9b736854fbbab012fff23c18838714e4aaa235d45ca8f3232155ff25edcfdb73c83adda56c7dd56bd6f19c6edd84'
6
+ metadata.gz: 7143346aa454306f0e471e0eb0cb6b55dc1f4742d2d15b8873f68b029aaf740e8097dae0e8c9b4e4e08a430357e2785870867cfbe6989c770e841bb44840b497
7
+ data.tar.gz: 87de96a184585d1d533baa7ed77792081f2ff886e1a7125ab21d8c4bc58dd2b0e1b721f3d630161bc35ec2c4b195265a776259e1d959882a0e7511595d1eedfb
data/README.md CHANGED
@@ -11,21 +11,47 @@ This started as sort of a labor of love/learning exercise, and sort of blossomed
11
11
 
12
12
  3) While all of the classes exist, currently only up to API version 1.12 is 'officially' supported- meaning it may work on newer versions, but I can't verify since I've only been able to develop against versions 1.12 and lower.
13
13
 
14
+ Table of contents
15
+ =================
16
+
17
+ <!--ts-->
18
+ * [Requirements](#requirements)
19
+ * [Installation](#installation)
20
+ * [Configuration](#configuration)
21
+ * [Usage](#usage)
22
+ * [Alerts](#alerts)
23
+ * [Apps](#app)
24
+ * [Certs](#cert)
25
+ * [Directory Service](#directory-service)
26
+ * [DNS](#dns)
27
+ * [Drives](#drive-information)
28
+ * [Hardware](#hardware)
29
+ * [Hosts](#hosts)
30
+ * [Host Groups](#host-groups)
31
+ * [Messages](#messages)
32
+ * [Network](#network)
33
+ * [Physical Arrays](#physical-arrays)
34
+ * [Ports](#port)
35
+ * [Protection Groups](#protection-groups)
36
+ * [SNMP](#snmp)
37
+ * [Subnets](#subnet)
38
+ * [Users](#users)
39
+ * [Volumes](#volumes)
40
+ * [Specs](#specs)
41
+ <!--te-->
42
+
14
43
  ## Requirements
15
44
 
16
45
  To be captain obvious, this does require you have access to a Pure Storage array.
17
46
 
18
47
  This library requires you use Ruby 2.3 or above.
19
48
 
20
- # Usage
21
-
22
49
  ## Installation
23
50
  ```
24
51
  gem install purest
25
52
  ```
26
53
 
27
54
  ## Configuration
28
-
29
55
  ```rb
30
56
  require 'purest'
31
57
 
@@ -49,7 +75,7 @@ https://purehost.yourdomain.com/static/0/help/rest/.
49
75
 
50
76
  Below I'll provide a large group of examples, but I won't be detailing every single method call with all of its possible options, for that I will again refer you to Pure's REST API docs.
51
77
 
52
- # Examples
78
+ # Usage
53
79
 
54
80
  ## Alerts
55
81
  Get information about alerts/alerting
@@ -5,7 +5,6 @@ require 'json'
5
5
  require 'faraday'
6
6
  require 'faraday_middleware'
7
7
  require 'faraday-cookie_jar'
8
- require 'pry'
9
8
  require 'psych'
10
9
 
11
10
  module Purest
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Purest
4
- VERSION = '1.0.3'
4
+ VERSION = '1.0.4'
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.3
4
+ version: 1.0.4
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-08-27 00:00:00.000000000 Z
11
+ date: 2018-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber