ovirt-engine-sdk 4.0.0.alpha12 → 4.0.0.alpha13

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.
@@ -1,4 +1,4 @@
1
- #--
1
+ #
2
2
  # Copyright (c) 2016-2016 Red Hat, Inc.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,16 +12,16 @@
12
12
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
- #++
15
+ #
16
16
 
17
17
  module OvirtSDK4
18
18
 
19
- ##
19
+ #
20
20
  # This module is a mixin that contains the methods common to struct and list types.
21
21
  #
22
22
  module Type
23
23
 
24
- ##
24
+ #
25
25
  # Returns the value of the `href` attribute.
26
26
  #
27
27
  # @return [String]
@@ -30,7 +30,7 @@ module OvirtSDK4
30
30
  return @href
31
31
  end
32
32
 
33
- ##
33
+ #
34
34
  # Sets the value of the `href` attribute.
35
35
  #
36
36
  # @param value [String]
@@ -41,13 +41,13 @@ module OvirtSDK4
41
41
 
42
42
  end
43
43
 
44
- ##
44
+ #
45
45
  # This is the base class for all the struct types.
46
46
  #
47
47
  class Struct
48
48
  include Type
49
49
 
50
- ##
50
+ #
51
51
  # Empty constructor.
52
52
  #
53
53
  def initialize(opts = {})
@@ -56,7 +56,7 @@ module OvirtSDK4
56
56
 
57
57
  end
58
58
 
59
- ##
59
+ #
60
60
  # This is the base class for all the list types.
61
61
  #
62
62
  class List < Array