aspose_cad_cloud 19.11

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.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/lib/aspose_cad_cloud.rb +83 -0
  3. data/lib/aspose_cad_cloud/api/cad_api.rb +2138 -0
  4. data/lib/aspose_cad_cloud/api_client.rb +403 -0
  5. data/lib/aspose_cad_cloud/api_error.rb +54 -0
  6. data/lib/aspose_cad_cloud/configuration.rb +189 -0
  7. data/lib/aspose_cad_cloud/models/bmp_options_dto.rb +327 -0
  8. data/lib/aspose_cad_cloud/models/cad_rasterization_options_dto.rb +473 -0
  9. data/lib/aspose_cad_cloud/models/cad_response.rb +317 -0
  10. data/lib/aspose_cad_cloud/models/cff2_properties.rb +197 -0
  11. data/lib/aspose_cad_cloud/models/color.rb +312 -0
  12. data/lib/aspose_cad_cloud/models/dgn_properties.rb +197 -0
  13. data/lib/aspose_cad_cloud/models/drawing_options_base_dto.rb +281 -0
  14. data/lib/aspose_cad_cloud/models/dwf_properties.rb +197 -0
  15. data/lib/aspose_cad_cloud/models/dwg_properties.rb +197 -0
  16. data/lib/aspose_cad_cloud/models/dxf_properties.rb +197 -0
  17. data/lib/aspose_cad_cloud/models/gif_options_dto.rb +386 -0
  18. data/lib/aspose_cad_cloud/models/graphics_options.rb +311 -0
  19. data/lib/aspose_cad_cloud/models/ifc_properties.rb +197 -0
  20. data/lib/aspose_cad_cloud/models/igs_properties.rb +197 -0
  21. data/lib/aspose_cad_cloud/models/jpeg2000_options_dto.rb +322 -0
  22. data/lib/aspose_cad_cloud/models/jpeg_options_dto.rb +378 -0
  23. data/lib/aspose_cad_cloud/models/pdf_document_info.rb +237 -0
  24. data/lib/aspose_cad_cloud/models/pdf_document_options.rb +249 -0
  25. data/lib/aspose_cad_cloud/models/pdf_options_dto.rb +301 -0
  26. data/lib/aspose_cad_cloud/models/pen_options.rb +280 -0
  27. data/lib/aspose_cad_cloud/models/png_options_dto.rb +388 -0
  28. data/lib/aspose_cad_cloud/models/psd_options_dto.rb +388 -0
  29. data/lib/aspose_cad_cloud/models/rd_optimizer_settings.rb +302 -0
  30. data/lib/aspose_cad_cloud/models/requests/GetDrawingPropertiesRequest.rb +53 -0
  31. data/lib/aspose_cad_cloud/models/requests/GetDrawingResizeRequest.rb +69 -0
  32. data/lib/aspose_cad_cloud/models/requests/GetDrawingRotateFlipRequest.rb +65 -0
  33. data/lib/aspose_cad_cloud/models/requests/GetDrawingSaveAsRequest.rb +61 -0
  34. data/lib/aspose_cad_cloud/models/requests/PostDrawingBmpRequest.rb +61 -0
  35. data/lib/aspose_cad_cloud/models/requests/PostDrawingGifRequest.rb +61 -0
  36. data/lib/aspose_cad_cloud/models/requests/PostDrawingJpeg2000Request.rb +61 -0
  37. data/lib/aspose_cad_cloud/models/requests/PostDrawingJpegRequest.rb +61 -0
  38. data/lib/aspose_cad_cloud/models/requests/PostDrawingPdfRequest.rb +61 -0
  39. data/lib/aspose_cad_cloud/models/requests/PostDrawingPngRequest.rb +61 -0
  40. data/lib/aspose_cad_cloud/models/requests/PostDrawingPropertiesRequest.rb +45 -0
  41. data/lib/aspose_cad_cloud/models/requests/PostDrawingPsdRequest.rb +61 -0
  42. data/lib/aspose_cad_cloud/models/requests/PostDrawingResizeRequest.rb +65 -0
  43. data/lib/aspose_cad_cloud/models/requests/PostDrawingRotateFlipRequest.rb +61 -0
  44. data/lib/aspose_cad_cloud/models/requests/PostDrawingSaveAsRequest.rb +57 -0
  45. data/lib/aspose_cad_cloud/models/requests/PostDrawingSvgRequest.rb +61 -0
  46. data/lib/aspose_cad_cloud/models/requests/PostDrawingTiffRequest.rb +61 -0
  47. data/lib/aspose_cad_cloud/models/requests/PostDrawingWmfRequest.rb +61 -0
  48. data/lib/aspose_cad_cloud/models/requests/PutDrawingBmpRequest.rb +57 -0
  49. data/lib/aspose_cad_cloud/models/requests/PutDrawingGifRequest.rb +57 -0
  50. data/lib/aspose_cad_cloud/models/requests/PutDrawingJpeg2000Request.rb +57 -0
  51. data/lib/aspose_cad_cloud/models/requests/PutDrawingJpegRequest.rb +57 -0
  52. data/lib/aspose_cad_cloud/models/requests/PutDrawingPdfRequest.rb +57 -0
  53. data/lib/aspose_cad_cloud/models/requests/PutDrawingPngRequest.rb +57 -0
  54. data/lib/aspose_cad_cloud/models/requests/PutDrawingPsdRequest.rb +57 -0
  55. data/lib/aspose_cad_cloud/models/requests/PutDrawingSvgRequest.rb +57 -0
  56. data/lib/aspose_cad_cloud/models/requests/PutDrawingTiffRequest.rb +57 -0
  57. data/lib/aspose_cad_cloud/models/requests/PutDrawingWmfRequest.rb +57 -0
  58. data/lib/aspose_cad_cloud/models/resolution_setting.rb +227 -0
  59. data/lib/aspose_cad_cloud/models/stl_properties.rb +197 -0
  60. data/lib/aspose_cad_cloud/models/svg_options_dto.rb +327 -0
  61. data/lib/aspose_cad_cloud/models/tiff_options_dto.rb +417 -0
  62. data/lib/aspose_cad_cloud/models/vector_rasterization_options_dto.rb +363 -0
  63. data/lib/aspose_cad_cloud/models/wmf_options_dto.rb +296 -0
  64. data/lib/aspose_cad_cloud/version.rb +29 -0
  65. metadata +178 -0
@@ -0,0 +1,296 @@
1
+
2
+ require 'date'
3
+
4
+ module AsposeCadCloud
5
+ #
6
+ # --------------------------------------------------------------------------------------------------------------------
7
+ # <copyright company="Aspose" file="WmfOptionsDTO.rb">
8
+ # Copyright (c) 2017 Aspose.CAD Cloud
9
+ # </copyright>
10
+ # <summary>
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
17
+ #
18
+ # The above copyright notice and this permission notice shall be included in all
19
+ # copies or substantial portions of the Software.
20
+ #
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ # SOFTWARE.
28
+ # </summary>
29
+ # --------------------------------------------------------------------------------------------------------------------
30
+ #
31
+
32
+ # Export options for WMF format
33
+ class WmfOptionsDTO
34
+ # Resulting rotation operation
35
+ attr_accessor :rotation
36
+
37
+ # Layers to export
38
+ attr_accessor :layers
39
+
40
+ # DPI resolution settings
41
+ attr_accessor :resolution_settings
42
+
43
+ # Raster options
44
+ attr_accessor :vector_rasterization_options
45
+
46
+ # Bits per pixel for Resulting file
47
+ attr_accessor :bits_per_pixel
48
+
49
+ class EnumAttributeValidator
50
+ attr_reader :datatype
51
+ attr_reader :allowable_values
52
+
53
+ def initialize(datatype, allowable_values)
54
+ @allowable_values = allowable_values.map do |value|
55
+ case datatype.to_s
56
+ when /Integer/i
57
+ value.to_i
58
+ when /Float/i
59
+ value.to_f
60
+ else
61
+ value
62
+ end
63
+ end
64
+ end
65
+
66
+ def valid?(value)
67
+ !value || allowable_values.include?(value)
68
+ end
69
+ end
70
+
71
+ # Attribute mapping from ruby-style variable name to JSON key.
72
+ def self.attribute_map
73
+ {
74
+ :'rotation' => :'Rotation',
75
+ :'layers' => :'Layers',
76
+ :'resolution_settings' => :'ResolutionSettings',
77
+ :'vector_rasterization_options' => :'VectorRasterizationOptions',
78
+ :'bits_per_pixel' => :'BitsPerPixel'
79
+ }
80
+ end
81
+
82
+ # Attribute type mapping.
83
+ def self.swagger_types
84
+ {
85
+ :'rotation' => :'String',
86
+ :'layers' => :'Array<String>',
87
+ :'resolution_settings' => :'ResolutionSetting',
88
+ :'vector_rasterization_options' => :'CadRasterizationOptionsDTO',
89
+ :'bits_per_pixel' => :'Integer'
90
+ }
91
+ end
92
+
93
+ # Initializes the object
94
+ # @param [Hash] attributes Model attributes in the form of hash
95
+ def initialize(attributes = {})
96
+ return unless attributes.is_a?(Hash)
97
+
98
+ # convert string to symbol for hash key
99
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
100
+
101
+ if attributes.key?(:'Rotation')
102
+ self.rotation = attributes[:'Rotation']
103
+ end
104
+
105
+ if attributes.key?(:'Layers')
106
+ if (value = attributes[:'Layers']).is_a?(Array)
107
+ self.layers = value
108
+ end
109
+ end
110
+
111
+ if attributes.key?(:'ResolutionSettings')
112
+ self.resolution_settings = attributes[:'ResolutionSettings']
113
+ end
114
+
115
+ if attributes.key?(:'VectorRasterizationOptions')
116
+ self.vector_rasterization_options = attributes[:'VectorRasterizationOptions']
117
+ end
118
+
119
+ if attributes.key?(:'BitsPerPixel')
120
+ self.bits_per_pixel = attributes[:'BitsPerPixel']
121
+ end
122
+
123
+ end
124
+
125
+ # Show invalid properties with the reasons. Usually used together with valid?
126
+ # @return Array for valid properies with the reasons
127
+ def list_invalid_properties
128
+ invalid_properties = []
129
+ if @rotation.nil?
130
+ invalid_properties.push("invalid value for 'rotation', rotation cannot be nil.")
131
+ end
132
+
133
+ if @bits_per_pixel.nil?
134
+ invalid_properties.push("invalid value for 'bits_per_pixel', bits_per_pixel cannot be nil.")
135
+ end
136
+
137
+ return invalid_properties
138
+ end
139
+
140
+ # Check to see if the all the properties in the model are valid
141
+ # @return true if the model is valid
142
+ def valid?
143
+ return false if @rotation.nil?
144
+ rotation_validator = EnumAttributeValidator.new('String', ["RotateNoneFlipNone", "Rotate90FlipNone", "Rotate180FlipNone", "Rotate270FlipNone", "RotateNoneFlipX", "Rotate90FlipX", "Rotate180FlipX", "Rotate270FlipX", "RotateNoneFlipY", "Rotate90FlipY", "Rotate180FlipY", "Rotate270FlipY", "RotateNoneFlipXY", "Rotate90FlipXY", "Rotate180FlipXY", "Rotate270FlipXY"])
145
+ return false unless rotation_validator.valid?(@rotation)
146
+ return false if @bits_per_pixel.nil?
147
+ return true
148
+ end
149
+
150
+ # Custom attribute writer method checking allowed values (enum).
151
+ # @param [Object] rotation Object to be assigned
152
+ def rotation=(rotation)
153
+ validator = EnumAttributeValidator.new('String', ["RotateNoneFlipNone", "Rotate90FlipNone", "Rotate180FlipNone", "Rotate270FlipNone", "RotateNoneFlipX", "Rotate90FlipX", "Rotate180FlipX", "Rotate270FlipX", "RotateNoneFlipY", "Rotate90FlipY", "Rotate180FlipY", "Rotate270FlipY", "RotateNoneFlipXY", "Rotate90FlipXY", "Rotate180FlipXY", "Rotate270FlipXY"])
154
+ if rotation.to_i == 0
155
+ unless validator.valid?(rotation)
156
+ raise ArgumentError, "invalid value for 'rotation', must be one of #{validator.allowable_values}."
157
+ end
158
+ @rotation = rotation
159
+ else
160
+ @rotation = validator.allowable_values[rotation.to_i]
161
+ end
162
+ end
163
+
164
+ # Checks equality by comparing each attribute.
165
+ # @param [Object] Object to be compared
166
+ def ==(other)
167
+ return true if self.equal?(other)
168
+ self.class == other.class &&
169
+ rotation == other.rotation &&
170
+ layers == other.layers &&
171
+ resolution_settings == other.resolution_settings &&
172
+ vector_rasterization_options == other.vector_rasterization_options &&
173
+ bits_per_pixel == other.bits_per_pixel
174
+ end
175
+
176
+ # @see the `==` method
177
+ # @param [Object] Object to be compared
178
+ def eql?(other)
179
+ self == other
180
+ end
181
+
182
+ # Calculates hash code according to all attributes.
183
+ # @return [Fixnum] Hash code
184
+ def hash
185
+ [rotation, layers, resolution_settings, vector_rasterization_options, bits_per_pixel].hash
186
+ end
187
+
188
+ # Builds the object from hash
189
+ # @param [Hash] attributes Model attributes in the form of hash
190
+ # @return [Object] Returns the model itself
191
+ def build_from_hash(attributes)
192
+ return nil unless attributes.is_a?(Hash)
193
+ self.class.swagger_types.each_pair do |key, type|
194
+ if type =~ /\AArray<(.*)>/i
195
+ # check to ensure the input is an array given that the the attribute
196
+ # is documented as an array but the input is not
197
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
198
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
199
+ end
200
+ elsif !attributes[self.class.attribute_map[key]].nil?
201
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
202
+ end
203
+ # or else data not found in attributes(hash), not an issue as the data can be optional
204
+ end
205
+
206
+ self
207
+ end
208
+
209
+ # Deserializes the data based on type
210
+ # @param string type Data type
211
+ # @param string value Value to be deserialized
212
+ # @return [Object] Deserialized data
213
+ def _deserialize(type, value)
214
+ case type.to_sym
215
+ when :DateTime
216
+ Time.at(/\d/.match(value)[0].to_f).to_datetime
217
+ when :Date
218
+ Time.at(/\d/.match(value)[0].to_f).to_date
219
+ when :String
220
+ value.to_s
221
+ when :Integer
222
+ value.to_i
223
+ when :Float
224
+ value.to_f
225
+ when :BOOLEAN
226
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
227
+ true
228
+ else
229
+ false
230
+ end
231
+ when :Object
232
+ # generic object (usually a Hash), return directly
233
+ value
234
+ when /\AArray<(?<inner_type>.+)>\z/
235
+ inner_type = Regexp.last_match[:inner_type]
236
+ value.map { |v| _deserialize(inner_type, v) }
237
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
238
+ k_type = Regexp.last_match[:k_type]
239
+ v_type = Regexp.last_match[:v_type]
240
+ {}.tap do |hash|
241
+ value.each do |k, v|
242
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
243
+ end
244
+ end
245
+ else
246
+ # model
247
+ temp_model = AsposeCadCloud.const_get(type).new
248
+ temp_model.build_from_hash(value)
249
+ end
250
+ end
251
+
252
+ # Returns the string representation of the object
253
+ # @return [String] String presentation of the object
254
+ def to_s
255
+ to_hash.to_s
256
+ end
257
+
258
+ # to_body is an alias to to_hash (backward compatibility)
259
+ # @return [Hash] Returns the object in the form of hash
260
+ def to_body
261
+ to_hash
262
+ end
263
+
264
+ # Returns the object in the form of hash
265
+ # @return [Hash] Returns the object in the form of hash
266
+ def to_hash
267
+ hash = {}
268
+ self.class.attribute_map.each_pair do |attr, param|
269
+ value = self.send(attr)
270
+ next if value.nil?
271
+ hash[param] = _to_hash(value)
272
+ end
273
+ hash
274
+ end
275
+
276
+ # Outputs non-array value in the form of hash
277
+ # For object, use to_hash. Otherwise, just return the value
278
+ # @param [Object] value Any valid value
279
+ # @return [Hash] Returns the value in the form of hash
280
+ def _to_hash(value)
281
+ if value.is_a?(Array)
282
+ value.compact.map { |v| _to_hash(v) }
283
+ elsif value.is_a?(Hash)
284
+ {}.tap do |hash|
285
+ value.each { |k, v| hash[k] = _to_hash(v) }
286
+ end
287
+ elsif value.respond_to? :to_hash
288
+ value.to_hash
289
+ else
290
+ value
291
+ end
292
+ end
293
+
294
+ end
295
+
296
+ end
@@ -0,0 +1,29 @@
1
+ #
2
+ # --------------------------------------------------------------------------------------------------------------------
3
+ # <copyright company="Aspose" file="version.rb">
4
+ # Copyright (c) 2018 Aspose.CAD Cloud
5
+ # </copyright>
6
+ # <summary>
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in all
15
+ # copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
24
+ # </summary>
25
+ # --------------------------------------------------------------------------------------------------------------------
26
+ #
27
+ module AsposeCadCloud
28
+ VERSION = "19.11".freeze
29
+ end
metadata ADDED
@@ -0,0 +1,178 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aspose_cad_cloud
3
+ version: !ruby/object:Gem::Version
4
+ version: '19.11'
5
+ platform: ruby
6
+ authors:
7
+ - DenisDemenko
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-05-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.14.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.14.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: mimemagic
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.3.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: aspose_storage_cloud
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '18.6'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '18.5'
51
+ type: :development
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '18.6'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '18.5'
61
+ - !ruby/object:Gem::Dependency
62
+ name: minitest
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '5.11'
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 5.11.3
71
+ type: :development
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '5.11'
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 5.11.3
81
+ description: "This SDK allows to work with Aspose.CAD Cloud REST API\n in
82
+ your Ruby applications quickly and easily, with zero initial cost\n and
83
+ perform various conversion and update operations on \n AutoCAD
84
+ DWG, DXF, DWF, DWT, STL, IGS, DGN, OBJ and CF2 files and export them into\n different
85
+ raster and vector formats like BMP, PSD, JPEG, TIFF, GIF, PNG, JPEG2000, SVG, WMF,
86
+ PDF"
87
+ email: denis.demenko@aspose.com
88
+ executables: []
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - lib/aspose_cad_cloud.rb
93
+ - lib/aspose_cad_cloud/api/cad_api.rb
94
+ - lib/aspose_cad_cloud/api_client.rb
95
+ - lib/aspose_cad_cloud/api_error.rb
96
+ - lib/aspose_cad_cloud/configuration.rb
97
+ - lib/aspose_cad_cloud/models/bmp_options_dto.rb
98
+ - lib/aspose_cad_cloud/models/cad_rasterization_options_dto.rb
99
+ - lib/aspose_cad_cloud/models/cad_response.rb
100
+ - lib/aspose_cad_cloud/models/cff2_properties.rb
101
+ - lib/aspose_cad_cloud/models/color.rb
102
+ - lib/aspose_cad_cloud/models/dgn_properties.rb
103
+ - lib/aspose_cad_cloud/models/drawing_options_base_dto.rb
104
+ - lib/aspose_cad_cloud/models/dwf_properties.rb
105
+ - lib/aspose_cad_cloud/models/dwg_properties.rb
106
+ - lib/aspose_cad_cloud/models/dxf_properties.rb
107
+ - lib/aspose_cad_cloud/models/gif_options_dto.rb
108
+ - lib/aspose_cad_cloud/models/graphics_options.rb
109
+ - lib/aspose_cad_cloud/models/ifc_properties.rb
110
+ - lib/aspose_cad_cloud/models/igs_properties.rb
111
+ - lib/aspose_cad_cloud/models/jpeg2000_options_dto.rb
112
+ - lib/aspose_cad_cloud/models/jpeg_options_dto.rb
113
+ - lib/aspose_cad_cloud/models/pdf_document_info.rb
114
+ - lib/aspose_cad_cloud/models/pdf_document_options.rb
115
+ - lib/aspose_cad_cloud/models/pdf_options_dto.rb
116
+ - lib/aspose_cad_cloud/models/pen_options.rb
117
+ - lib/aspose_cad_cloud/models/png_options_dto.rb
118
+ - lib/aspose_cad_cloud/models/psd_options_dto.rb
119
+ - lib/aspose_cad_cloud/models/rd_optimizer_settings.rb
120
+ - lib/aspose_cad_cloud/models/requests/GetDrawingPropertiesRequest.rb
121
+ - lib/aspose_cad_cloud/models/requests/GetDrawingResizeRequest.rb
122
+ - lib/aspose_cad_cloud/models/requests/GetDrawingRotateFlipRequest.rb
123
+ - lib/aspose_cad_cloud/models/requests/GetDrawingSaveAsRequest.rb
124
+ - lib/aspose_cad_cloud/models/requests/PostDrawingBmpRequest.rb
125
+ - lib/aspose_cad_cloud/models/requests/PostDrawingGifRequest.rb
126
+ - lib/aspose_cad_cloud/models/requests/PostDrawingJpeg2000Request.rb
127
+ - lib/aspose_cad_cloud/models/requests/PostDrawingJpegRequest.rb
128
+ - lib/aspose_cad_cloud/models/requests/PostDrawingPdfRequest.rb
129
+ - lib/aspose_cad_cloud/models/requests/PostDrawingPngRequest.rb
130
+ - lib/aspose_cad_cloud/models/requests/PostDrawingPropertiesRequest.rb
131
+ - lib/aspose_cad_cloud/models/requests/PostDrawingPsdRequest.rb
132
+ - lib/aspose_cad_cloud/models/requests/PostDrawingResizeRequest.rb
133
+ - lib/aspose_cad_cloud/models/requests/PostDrawingRotateFlipRequest.rb
134
+ - lib/aspose_cad_cloud/models/requests/PostDrawingSaveAsRequest.rb
135
+ - lib/aspose_cad_cloud/models/requests/PostDrawingSvgRequest.rb
136
+ - lib/aspose_cad_cloud/models/requests/PostDrawingTiffRequest.rb
137
+ - lib/aspose_cad_cloud/models/requests/PostDrawingWmfRequest.rb
138
+ - lib/aspose_cad_cloud/models/requests/PutDrawingBmpRequest.rb
139
+ - lib/aspose_cad_cloud/models/requests/PutDrawingGifRequest.rb
140
+ - lib/aspose_cad_cloud/models/requests/PutDrawingJpeg2000Request.rb
141
+ - lib/aspose_cad_cloud/models/requests/PutDrawingJpegRequest.rb
142
+ - lib/aspose_cad_cloud/models/requests/PutDrawingPdfRequest.rb
143
+ - lib/aspose_cad_cloud/models/requests/PutDrawingPngRequest.rb
144
+ - lib/aspose_cad_cloud/models/requests/PutDrawingPsdRequest.rb
145
+ - lib/aspose_cad_cloud/models/requests/PutDrawingSvgRequest.rb
146
+ - lib/aspose_cad_cloud/models/requests/PutDrawingTiffRequest.rb
147
+ - lib/aspose_cad_cloud/models/requests/PutDrawingWmfRequest.rb
148
+ - lib/aspose_cad_cloud/models/resolution_setting.rb
149
+ - lib/aspose_cad_cloud/models/stl_properties.rb
150
+ - lib/aspose_cad_cloud/models/svg_options_dto.rb
151
+ - lib/aspose_cad_cloud/models/tiff_options_dto.rb
152
+ - lib/aspose_cad_cloud/models/vector_rasterization_options_dto.rb
153
+ - lib/aspose_cad_cloud/models/wmf_options_dto.rb
154
+ - lib/aspose_cad_cloud/version.rb
155
+ homepage: https://github.com/aspose-cad-cloud/aspose-cad-cloud-ruby
156
+ licenses:
157
+ - MIT
158
+ metadata: {}
159
+ post_install_message:
160
+ rdoc_options: []
161
+ require_paths:
162
+ - lib
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: '2.3'
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ requirements: []
174
+ rubygems_version: 3.1.2
175
+ signing_key:
176
+ specification_version: 4
177
+ summary: SDK for operating with Aspose.CAD Cloud API to manipulate with CAD files
178
+ test_files: []