washout_builder 2.0.4 → 2.0.5

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: 31e9ca2912acbfe0b0abde89e74ae2f2c5b7f89bcdf9a9a92054e6e7ed3d7017
4
- data.tar.gz: 0f9eb779de5e243f47d6464f9d6e0c45790c64053b3f4b75f94431ef328ee8dd
3
+ metadata.gz: 07cbf72181269afe7c81be817b82027fc0353f4be0174b926b329c9963712d20
4
+ data.tar.gz: 6431a14a4a5e4fedc0c3682dbeec724678eaec360025eff7292a5c133d2cc421
5
5
  SHA512:
6
- metadata.gz: 6c95a39a250f9fa4bb7d4e0d276f69b8bbf3a02441698f93214d56d32110cb26366897198c7b1da78665a34148ef9062fa07872add72222bc6203cd6d2ca11b3
7
- data.tar.gz: 2e40ae1202131d8bdec1f30a91107be0477c7636d53be584f6bf4a6eec46ec996aa2f637d090b259126050e6d589ad83274dc6b5bf2121f334fda01dc1c3919d
6
+ metadata.gz: '0220855ff5d6656482d2a23db14e6150330508d9d55ca8cdd89bd66605ae783afcf2c0416f188eeb4f58b0dc8ec69c5d2d20326d1cec0bad3cba6d1aac7dbd02'
7
+ data.tar.gz: 373c906bb927c4dc0e4a5610f811dccba8ff39adfa3dc5fa1e919dcdca23861d35ab605eca7d0b1b7457dfcd3fb3dc840b9bd55e078f0943323a61343fcab7a8
@@ -8,7 +8,11 @@ module WashoutBuilder
8
8
  # @param [Array<Class>] array The array of classes that should be fitered from the ancestors if they are present
9
9
  # @return [Array<Class>] The classes from which the class given as first argument inherits from but filtering the classes passed as second argument
10
10
  def get_complex_type_ancestors(class_name, array)
11
- (class_name.ancestors - class_name.included_modules).delete_if { |x| x.to_s.downcase == class_name.to_s.downcase || array.include?(x.to_s) }
11
+ (class_name.ancestors - class_name.included_modules).delete_if do |x|
12
+ x.to_s.downcase == class_name.to_s.downcase ||
13
+ array.include?(x.to_s) ||
14
+ (x.respond_to?(:abstract_class) && x.abstract_class)
15
+ end
12
16
  end
13
17
  end
14
18
  end
@@ -12,7 +12,7 @@ module WashoutBuilder
12
12
  # the minor version of the gem
13
13
  MINOR = 0
14
14
  # the tiny version of the gem
15
- TINY = 4
15
+ TINY = 5
16
16
  # if the version should be a prerelease
17
17
  PRE = nil
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: washout_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada
@@ -441,7 +441,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
441
441
  - !ruby/object:Gem::Version
442
442
  version: '0'
443
443
  requirements: []
444
- rubygems_version: 3.1.2
444
+ rubygems_version: 3.2.3
445
445
  signing_key:
446
446
  specification_version: 4
447
447
  summary: WashOut Soap Service HTML-Documentation generator (extends WashOut https://github.com/inossidabile/wash_out/)