aspose_words_cloud 18.9 → 19.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54253760bf27127f5f35b2c74aae8afefb66a8db9f2194fbe5c738bebecb8485
|
4
|
+
data.tar.gz: 73bcda8b7c9d9848419e6b394525ce934a8ce124e8cd1494010b06b913223ab3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 105fb59463b157f4e2de1335f1569076a671b9d30c20f7297876256c518f3d2112e5c1af6b8889eb59b520be684ee9547d5d600337145db5cdf3a81af855c60e
|
7
|
+
data.tar.gz: c74540b8ddebc71eb8f53df902a746fcf2563db42602757dae2413b5b60e46b894251be4fd8ac46732c0e126dbd05667b7de7c41a164b0b79a06e9e282514c01
|
@@ -58,6 +58,9 @@ module AsposeWordsCloud
|
|
58
58
|
# Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is true
|
59
59
|
attr_accessor :update_fields
|
60
60
|
|
61
|
+
# Specifies whether to add bi-directional marks before each BiDi run when exporting in plain text format. The default value is true.
|
62
|
+
attr_accessor :add_bidi_marks
|
63
|
+
|
61
64
|
# Specifies the encoding to use when exporting in plain text format
|
62
65
|
attr_accessor :encoding
|
63
66
|
|
@@ -89,6 +92,7 @@ module AsposeWordsCloud
|
|
89
92
|
:'update_last_saved_time_property' => :'UpdateLastSavedTimeProperty',
|
90
93
|
:'update_sdt_content' => :'UpdateSdtContent',
|
91
94
|
:'update_fields' => :'UpdateFields',
|
95
|
+
:'add_bidi_marks' => :'AddBidiMarks',
|
92
96
|
:'encoding' => :'Encoding',
|
93
97
|
:'export_headers_footers' => :'ExportHeadersFooters',
|
94
98
|
:'force_page_breaks' => :'ForcePageBreaks',
|
@@ -110,6 +114,7 @@ module AsposeWordsCloud
|
|
110
114
|
:'update_last_saved_time_property' => :'BOOLEAN',
|
111
115
|
:'update_sdt_content' => :'BOOLEAN',
|
112
116
|
:'update_fields' => :'BOOLEAN',
|
117
|
+
:'add_bidi_marks' => :'BOOLEAN',
|
113
118
|
:'encoding' => :'String',
|
114
119
|
:'export_headers_footers' => :'BOOLEAN',
|
115
120
|
:'force_page_breaks' => :'BOOLEAN',
|
@@ -163,6 +168,10 @@ module AsposeWordsCloud
|
|
163
168
|
self.update_fields = attributes[:'UpdateFields']
|
164
169
|
end
|
165
170
|
|
171
|
+
if attributes.key?(:'AddBidiMarks')
|
172
|
+
self.add_bidi_marks = attributes[:'AddBidiMarks']
|
173
|
+
end
|
174
|
+
|
166
175
|
if attributes.key?(:'Encoding')
|
167
176
|
self.encoding = attributes[:'Encoding']
|
168
177
|
end
|
@@ -216,6 +225,7 @@ module AsposeWordsCloud
|
|
216
225
|
update_last_saved_time_property == other.update_last_saved_time_property &&
|
217
226
|
update_sdt_content == other.update_sdt_content &&
|
218
227
|
update_fields == other.update_fields &&
|
228
|
+
add_bidi_marks == other.add_bidi_marks &&
|
219
229
|
encoding == other.encoding &&
|
220
230
|
export_headers_footers == other.export_headers_footers &&
|
221
231
|
force_page_breaks == other.force_page_breaks &&
|
@@ -233,7 +243,7 @@ module AsposeWordsCloud
|
|
233
243
|
# Calculates hash code according to all attributes.
|
234
244
|
# @return [Fixnum] Hash code
|
235
245
|
def hash
|
236
|
-
[color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, encoding, export_headers_footers, force_page_breaks, paragraph_break, preserve_table_layout, simplify_list_labels].hash
|
246
|
+
[color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, add_bidi_marks, encoding, export_headers_footers, force_page_breaks, paragraph_break, preserve_table_layout, simplify_list_labels].hash
|
237
247
|
end
|
238
248
|
|
239
249
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_words_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '19.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YaroslawEkimov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|