vipruby 0.1.7 → 0.1.7.2
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 +4 -4
- data/.yardoc/checksums +14 -4
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/{LICENSE.txt → LICENSE} +2 -2
- data/README.md +94 -12
- data/doc/Vipr.html +139 -29
- data/doc/ViprAutoTier.html +426 -0
- data/doc/ViprBase.html +1 -1
- data/doc/ViprBlockVirtualPool.html +859 -0
- data/doc/ViprFileVirtualPool.html +859 -0
- data/doc/ViprHost.html +1 -1
- data/doc/ViprServiceCatalog.html +800 -0
- data/doc/ViprStoragePool.html +664 -0
- data/doc/ViprStoragePort.html +664 -0
- data/doc/ViprStorageSystem.html +2588 -805
- data/doc/ViprStorageTier.html +323 -0
- data/doc/ViprTenant.html +529 -0
- data/doc/ViprVcenter.html +1 -1
- data/doc/ViprVirtualArray.html +1230 -0
- data/doc/ViprVirtualDataCenter.html +407 -0
- data/doc/Vipruby.html +2 -2
- data/doc/_index.html +51 -1
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +71 -26
- data/doc/index.html +71 -26
- data/doc/method_list.html +438 -12
- data/doc/top-level-namespace.html +2 -2
- data/lib/doc/_index.html +88 -0
- data/lib/doc/class_list.html +58 -0
- data/lib/doc/css/common.css +1 -0
- data/lib/doc/css/full_list.css +57 -0
- data/lib/doc/css/style.css +339 -0
- data/lib/doc/file_list.html +57 -0
- data/lib/doc/frames.html +26 -0
- data/lib/doc/index.html +88 -0
- data/lib/doc/js/app.js +219 -0
- data/lib/doc/js/full_list.js +181 -0
- data/lib/doc/js/jquery.js +4 -0
- data/lib/doc/method_list.html +57 -0
- data/lib/doc/top-level-namespace.html +102 -0
- data/lib/vipruby.rb +1 -5
- data/lib/vipruby/objects/autotier.rb +30 -0
- data/lib/vipruby/objects/blockvirtualpool.rb +74 -0
- data/lib/vipruby/objects/filevirtualpool.rb +74 -0
- data/lib/vipruby/objects/servicecatalog.rb +81 -0
- data/lib/vipruby/objects/storagepool.rb +80 -0
- data/lib/vipruby/objects/storageport.rb +62 -0
- data/lib/vipruby/objects/storagesystem.rb +169 -0
- data/lib/vipruby/objects/storagetier.rb +21 -0
- data/lib/vipruby/objects/tenant.rb +39 -0
- data/lib/vipruby/objects/virtualarray.rb +100 -0
- data/lib/vipruby/objects/virtualdatacenter.rb +28 -0
- data/lib/vipruby/version.rb +1 -1
- data/lib/vipruby/vipr.rb +25 -5
- data/vipruby.gemspec +2 -2
- metadata +39 -6
data/vipruby.gemspec
CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'vipruby'
|
7
7
|
s.version = Vipruby::VERSION
|
8
8
|
s.date = Date.today.to_s
|
9
|
-
s.summary = "
|
10
|
-
s.description = "
|
9
|
+
s.summary = "Ruby Library for EMC's ViPR Controller (ViPR-C) REST API"
|
10
|
+
s.description = "Ruby implementation to add and gather information from EMC's ViPR Controller (ViPR-C) REST API"
|
11
11
|
s.authors = ["Craig J Smith", "Kendrick Coleman"]
|
12
12
|
s.email = 'emccode@emc.com'
|
13
13
|
s.require_paths = %w[lib]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vipruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.7
|
4
|
+
version: 0.1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Craig J Smith
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-06-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -95,8 +95,8 @@ dependencies:
|
|
95
95
|
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: '0'
|
98
|
-
description:
|
99
|
-
|
98
|
+
description: Ruby implementation to add and gather information from EMC's ViPR Controller
|
99
|
+
(ViPR-C) REST API
|
100
100
|
email: emccode@emc.com
|
101
101
|
executables: []
|
102
102
|
extensions: []
|
@@ -110,15 +110,25 @@ files:
|
|
110
110
|
- ".yardopts"
|
111
111
|
- Gemfile
|
112
112
|
- Gemfile.lock
|
113
|
-
- LICENSE
|
113
|
+
- LICENSE
|
114
114
|
- README.md
|
115
115
|
- Rakefile
|
116
116
|
- doc/Host.html
|
117
117
|
- doc/Vipr.html
|
118
|
+
- doc/ViprAutoTier.html
|
118
119
|
- doc/ViprBase.html
|
120
|
+
- doc/ViprBlockVirtualPool.html
|
121
|
+
- doc/ViprFileVirtualPool.html
|
119
122
|
- doc/ViprHost.html
|
123
|
+
- doc/ViprServiceCatalog.html
|
124
|
+
- doc/ViprStoragePool.html
|
125
|
+
- doc/ViprStoragePort.html
|
120
126
|
- doc/ViprStorageSystem.html
|
127
|
+
- doc/ViprStorageTier.html
|
128
|
+
- doc/ViprTenant.html
|
121
129
|
- doc/ViprVcenter.html
|
130
|
+
- doc/ViprVirtualArray.html
|
131
|
+
- doc/ViprVirtualDataCenter.html
|
122
132
|
- doc/Vipruby.html
|
123
133
|
- doc/Vipruby/Auth.html
|
124
134
|
- doc/_index.html
|
@@ -139,14 +149,37 @@ files:
|
|
139
149
|
- lib/.yardoc/object_types
|
140
150
|
- lib/.yardoc/objects/root.dat
|
141
151
|
- lib/.yardoc/proxy_types
|
152
|
+
- lib/doc/_index.html
|
153
|
+
- lib/doc/class_list.html
|
154
|
+
- lib/doc/css/common.css
|
155
|
+
- lib/doc/css/full_list.css
|
156
|
+
- lib/doc/css/style.css
|
157
|
+
- lib/doc/file_list.html
|
158
|
+
- lib/doc/frames.html
|
159
|
+
- lib/doc/index.html
|
160
|
+
- lib/doc/js/app.js
|
161
|
+
- lib/doc/js/full_list.js
|
162
|
+
- lib/doc/js/jquery.js
|
163
|
+
- lib/doc/method_list.html
|
164
|
+
- lib/doc/top-level-namespace.html
|
142
165
|
- lib/vipruby.rb
|
143
166
|
- lib/vipruby/.yardoc/checksums
|
144
167
|
- lib/vipruby/.yardoc/object_types
|
145
168
|
- lib/vipruby/.yardoc/objects/root.dat
|
146
169
|
- lib/vipruby/.yardoc/proxy_types
|
170
|
+
- lib/vipruby/objects/autotier.rb
|
171
|
+
- lib/vipruby/objects/blockvirtualpool.rb
|
172
|
+
- lib/vipruby/objects/filevirtualpool.rb
|
147
173
|
- lib/vipruby/objects/host.rb
|
174
|
+
- lib/vipruby/objects/servicecatalog.rb
|
175
|
+
- lib/vipruby/objects/storagepool.rb
|
176
|
+
- lib/vipruby/objects/storageport.rb
|
148
177
|
- lib/vipruby/objects/storagesystem.rb
|
178
|
+
- lib/vipruby/objects/storagetier.rb
|
179
|
+
- lib/vipruby/objects/tenant.rb
|
149
180
|
- lib/vipruby/objects/vcenter.rb
|
181
|
+
- lib/vipruby/objects/virtualarray.rb
|
182
|
+
- lib/vipruby/objects/virtualdatacenter.rb
|
150
183
|
- lib/vipruby/version.rb
|
151
184
|
- lib/vipruby/vipr.rb
|
152
185
|
- lib/vipruby/viprbase.rb
|
@@ -174,6 +207,6 @@ rubyforge_project:
|
|
174
207
|
rubygems_version: 2.2.2
|
175
208
|
signing_key:
|
176
209
|
specification_version: 4
|
177
|
-
summary:
|
210
|
+
summary: Ruby Library for EMC's ViPR Controller (ViPR-C) REST API
|
178
211
|
test_files: []
|
179
212
|
has_rdoc:
|