occi 2.2.2 → 2.3.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.
- data/.yardopts +1 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +48 -18
- data/lib/occi/client.rb +54 -17
- data/lib/occi/collection.rb +25 -7
- data/lib/occi/core/action.rb +7 -0
- data/lib/occi/core/attribute_properties.rb +2 -2
- data/lib/occi/core/attributes.rb +2 -2
- data/lib/occi/core/category.rb +43 -23
- data/lib/occi/core/entity.rb +62 -67
- data/lib/occi/core/kind.rb +32 -5
- data/lib/occi/core/link.rb +14 -51
- data/lib/occi/core/mixin.rb +31 -5
- data/lib/occi/core/resource.rb +34 -33
- data/lib/occi/log.rb +16 -4
- data/lib/occi/model.rb +53 -47
- data/lib/occi/parser.rb +192 -65
- data/lib/occi/version.rb +1 -1
- data/spec/occi/client_spec.rb +12 -0
- data/spec/occi/log_spec.rb +2 -1
- data/spec/occi/model_spec.rb +43 -14
- data/spec/occi/parser_spec.rb +18 -3
- data/spec/occi/test.ova +0 -0
- metadata +6 -3
data/spec/occi/test.ova
ADDED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: occi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-07-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: json
|
@@ -134,7 +134,6 @@ extensions: []
|
|
134
134
|
extra_rdoc_files: []
|
135
135
|
files:
|
136
136
|
- .gitignore
|
137
|
-
- .project
|
138
137
|
- .rspec
|
139
138
|
- .travis.yml
|
140
139
|
- .yardopts
|
@@ -176,10 +175,12 @@ files:
|
|
176
175
|
- lib/occiantlr/OCCIANTLRParser.rb
|
177
176
|
- lib/occiantlr/README.md
|
178
177
|
- occi.gemspec
|
178
|
+
- spec/occi/client_spec.rb
|
179
179
|
- spec/occi/collection_spec.rb
|
180
180
|
- spec/occi/log_spec.rb
|
181
181
|
- spec/occi/model_spec.rb
|
182
182
|
- spec/occi/parser_spec.rb
|
183
|
+
- spec/occi/test.ova
|
183
184
|
- spec/occiantlr/parser_spec.rb
|
184
185
|
- spec/spec_helper.rb
|
185
186
|
homepage: https://github.com/gwdg/occi
|
@@ -207,10 +208,12 @@ signing_key:
|
|
207
208
|
specification_version: 3
|
208
209
|
summary: OCCI toolkit
|
209
210
|
test_files:
|
211
|
+
- spec/occi/client_spec.rb
|
210
212
|
- spec/occi/collection_spec.rb
|
211
213
|
- spec/occi/log_spec.rb
|
212
214
|
- spec/occi/model_spec.rb
|
213
215
|
- spec/occi/parser_spec.rb
|
216
|
+
- spec/occi/test.ova
|
214
217
|
- spec/occiantlr/parser_spec.rb
|
215
218
|
- spec/spec_helper.rb
|
216
219
|
has_rdoc:
|