aspose_words_cloud 22.4.0 → 22.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 105d3df045869f649c9c84e87c32c111a65ace7530b44a8aa47a0e589c1259c8
4
- data.tar.gz: 2945151b836223d2eab114d9bb71cf767fb0bfc94fb204a166923795c4ed9f8e
3
+ metadata.gz: 0aeb1a4fc6f0d1e6c799de54195681aeb81922a15544defb1bb4a5c760fd7880
4
+ data.tar.gz: 014f8f89dfa72ae8bd3fdb2c909efb6d72105ca4a11d6f578be6923f4209c9b4
5
5
  SHA512:
6
- metadata.gz: 17300dc2314b9e4d45b017272cd196e1e8304cc860e537efe8c4794402f9d3c6b423691816a58355e639bfd226fe1b41819b914fe1dd1766fdac38213242e30b
7
- data.tar.gz: 82fd5faec2ab2e60f9632712fcd970da636448ef645370e05cef715848d5f39b94d7f63b74f8c4701bb68f20227874d0353475d46e798339e5162a15d5b877ef
6
+ metadata.gz: 12a7671e53e435f5549a9a52b61f79ac11dfeac74cdd34af5c557e4c0d4f448dfc82dccf1b3f4fdad4111c8751ffb9efaf9087a10cc9a21a787aecf770207a12
7
+ data.tar.gz: 79e1ef60b5525b9996947c873a9617c441c406defa0bf4d980904cf97f895e840f9f1883605e41243934c7346da73a34669ac6ecd4bef8cd0cbdb4da41886e1b
@@ -364,7 +364,7 @@ module AsposeWordsCloud
364
364
  return false unless orientation_validator.valid?(@orientation)
365
365
  page_number_style_validator = EnumAttributeValidator.new('String', ["Arabic", "UppercaseRoman", "LowercaseRoman", "UppercaseLetter", "LowercaseLetter", "Ordinal", "Number", "OrdinalText", "Hex", "ChicagoManual", "Kanji", "KanjiDigit", "AiueoHalfWidth", "IrohaHalfWidth", "ArabicFullWidth", "ArabicHalfWidth", "KanjiTraditional", "KanjiTraditional2", "NumberInCircle", "DecimalFullWidth", "Aiueo", "Iroha", "LeadingZero", "Bullet", "Ganada", "Chosung", "GB1", "GB2", "GB3", "GB4", "Zodiac1", "Zodiac2", "Zodiac3", "TradChinNum1", "TradChinNum2", "TradChinNum3", "TradChinNum4", "SimpChinNum1", "SimpChinNum2", "SimpChinNum3", "SimpChinNum4", "HanjaRead", "HanjaReadDigit", "Hangul", "Hanja", "Hebrew1", "Arabic1", "Hebrew2", "Arabic2", "HindiLetter1", "HindiLetter2", "HindiArabic", "HindiCardinalText", "ThaiLetter", "ThaiArabic", "ThaiCardinalText", "VietCardinalText", "NumberInDash", "LowercaseRussian", "UppercaseRussian", "None", "Custom"])
366
366
  return false unless page_number_style_validator.valid?(@page_number_style)
367
- paper_size_validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Custom"])
367
+ paper_size_validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "Custom"])
368
368
  return false unless paper_size_validator.valid?(@paper_size)
369
369
  section_start_validator = EnumAttributeValidator.new('String', ["Continuous", "NewColumn", "NewPage", "EvenPage", "OddPage"])
370
370
  return false unless section_start_validator.valid?(@section_start)
@@ -447,7 +447,7 @@ module AsposeWordsCloud
447
447
  # Custom attribute writer method checking allowed values (enum).
448
448
  # @param [Object] paper_size Object to be assigned
449
449
  def paper_size=(paper_size)
450
- validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Custom"])
450
+ validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "Custom"])
451
451
  if paper_size.to_i == 0
452
452
  unless validator.valid?(paper_size)
453
453
  raise ArgumentError, "invalid value for 'paper_size', must be one of #{validator.allowable_values}."
@@ -344,7 +344,7 @@ module AsposeWordsCloud
344
344
  # Check to see if the all the properties in the model are valid
345
345
  # @return true if the model is valid
346
346
  def valid?
347
- alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
347
+ alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
348
348
  return false unless alignment_validator.valid?(@alignment)
349
349
  drop_cap_position_validator = EnumAttributeValidator.new('String', ["None", "Normal", "Margin"])
350
350
  return false unless drop_cap_position_validator.valid?(@drop_cap_position)
@@ -361,7 +361,7 @@ module AsposeWordsCloud
361
361
  # Custom attribute writer method checking allowed values (enum).
362
362
  # @param [Object] alignment Object to be assigned
363
363
  def alignment=(alignment)
364
- validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
364
+ validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
365
365
  if alignment.to_i == 0
366
366
  unless validator.valid?(alignment)
367
367
  raise ArgumentError, "invalid value for 'alignment', must be one of #{validator.allowable_values}."
@@ -326,7 +326,7 @@ module AsposeWordsCloud
326
326
  # Check to see if the all the properties in the model are valid
327
327
  # @return true if the model is valid
328
328
  def valid?
329
- alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
329
+ alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
330
330
  return false unless alignment_validator.valid?(@alignment)
331
331
  drop_cap_position_validator = EnumAttributeValidator.new('String', ["None", "Normal", "Margin"])
332
332
  return false unless drop_cap_position_validator.valid?(@drop_cap_position)
@@ -343,7 +343,7 @@ module AsposeWordsCloud
343
343
  # Custom attribute writer method checking allowed values (enum).
344
344
  # @param [Object] alignment Object to be assigned
345
345
  def alignment=(alignment)
346
- validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
346
+ validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
347
347
  if alignment.to_i == 0
348
348
  unless validator.valid?(alignment)
349
349
  raise ArgumentError, "invalid value for 'alignment', must be one of #{validator.allowable_values}."
@@ -326,7 +326,7 @@ module AsposeWordsCloud
326
326
  # Check to see if the all the properties in the model are valid
327
327
  # @return true if the model is valid
328
328
  def valid?
329
- alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
329
+ alignment_validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
330
330
  return false unless alignment_validator.valid?(@alignment)
331
331
  drop_cap_position_validator = EnumAttributeValidator.new('String', ["None", "Normal", "Margin"])
332
332
  return false unless drop_cap_position_validator.valid?(@drop_cap_position)
@@ -343,7 +343,7 @@ module AsposeWordsCloud
343
343
  # Custom attribute writer method checking allowed values (enum).
344
344
  # @param [Object] alignment Object to be assigned
345
345
  def alignment=(alignment)
346
- validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed"])
346
+ validator = EnumAttributeValidator.new('String', ["Left", "Center", "Right", "Justify", "Distributed", "ArabicMediumKashida", "ArabicHighKashida", "ArabicLowKashida", "ThaiDistributed", "MathElementCenterAsGroup"])
347
347
  if alignment.to_i == 0
348
348
  unless validator.valid?(alignment)
349
349
  raise ArgumentError, "invalid value for 'alignment', must be one of #{validator.allowable_values}."
@@ -127,7 +127,7 @@ module AsposeWordsCloud
127
127
  # Check to see if the all the properties in the model are valid
128
128
  # @return true if the model is valid
129
129
  def valid?
130
- hash_algorithm_validator = EnumAttributeValidator.new('String', ["Sha1", "Sha256", "Sha384", "Sha512", "Md5", "RipeMD160"])
130
+ hash_algorithm_validator = EnumAttributeValidator.new('String', ["Sha256", "Sha384", "Sha512", "RipeMD160"])
131
131
  return false unless hash_algorithm_validator.valid?(@hash_algorithm)
132
132
 
133
133
  return true
@@ -136,7 +136,7 @@ module AsposeWordsCloud
136
136
  # Custom attribute writer method checking allowed values (enum).
137
137
  # @param [Object] hash_algorithm Object to be assigned
138
138
  def hash_algorithm=(hash_algorithm)
139
- validator = EnumAttributeValidator.new('String', ["Sha1", "Sha256", "Sha384", "Sha512", "Md5", "RipeMD160"])
139
+ validator = EnumAttributeValidator.new('String', ["Sha256", "Sha384", "Sha512", "RipeMD160"])
140
140
  if hash_algorithm.to_i == 0
141
141
  unless validator.valid?(hash_algorithm)
142
142
  raise ArgumentError, "invalid value for 'hash_algorithm', must be one of #{validator.allowable_values}."
@@ -24,5 +24,5 @@
24
24
  # ------------------------------------------------------------------------------------
25
25
 
26
26
  module AsposeWordsCloud
27
- VERSION = "22.4.0".freeze
27
+ VERSION = "22.5.0".freeze
28
28
  end
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: 22.4.0
4
+ version: 22.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - YaroslawEkimov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-14 00:00:00.000000000 Z
11
+ date: 2022-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday