ruby-qt6-rspec 6.0.0 → 6.1.0

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: 7fbcd5cbd6dfd31f9edb28a0e5576607c17e7c2e803e43db515c31ceea0de7a1
4
- data.tar.gz: ffde495e82226cbd878290b4eb2d7aff01885d3187628b6330bc1aa5451d521c
3
+ metadata.gz: b9f48e9bb6f936b33d5be9fd924daf88e1f8b0b73a9129d342183bbc6f89c3d0
4
+ data.tar.gz: d1c9ef69ae959c2b85a9475496b65d9042a13cdfe89930da3bb03508b21a0e7f
5
5
  SHA512:
6
- metadata.gz: 2826989b192638079818e8c660b88bfafac82369793732be5a82733b408782ee01789a02dffc89689285117c42a72a6134ed2e17cade8c164a95e16521ab7f3b
7
- data.tar.gz: 749d88cc076324a586c238e0ea36347adc3c75050a76fe6fa33a1f0bf378e78ccc13e53ecef95abceb1e4795404826f04c5d42801cc8ebc58dfa5acf792b1283
6
+ metadata.gz: 14aba37e801e9693d55bf98e2eae01bbb09f64d1d7b668985f4ed1f7dcaa704be64048be24cbaa076fa3a6ede360b589575c649263220055d84d9f06dc77cbe7
7
+ data.tar.gz: 9613255594593f0fdd3388c49c9c4620e352428529506585c86628a72ceb68ec551ce3c2a31e485a61d46d69e650167ca3429d507d53ff4a3fdf89e306e4eba1
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RubyQt6
4
4
  module RSpec
5
- RSPEC_RUBYGEM_VERSION = "6.0.0"
5
+ RSPEC_RUBYGEM_VERSION = "6.1.0"
6
6
  end
7
7
  end
data/lib/qt6/rspec.rb CHANGED
@@ -9,6 +9,7 @@ module RubyQt6
9
9
  VERIFY_QLASS_VIRTUAL_METHODS = [
10
10
  "event", "event_filter", # QObject
11
11
  "connect_notify", "disconnect_notify", # QObject
12
+ "parent", # QObject
12
13
  "paint_engine", # QPaintDevice
13
14
  "metric", # QPaintDevice
14
15
  "has_height_for_width", "height_for_width", # QWidget
@@ -28,12 +29,19 @@ module RubyQt6
28
29
  ]
29
30
  NO_VERIFY_QLASS_VIRTUAL_METHODS = {
30
31
  "QCoreApplication" => ["post_event", "send_event"],
32
+ "QItemSelectionRange" => ["parent"],
33
+ "QModelIndex" => ["parent"],
34
+ "QStandardItem" => ["parent"],
35
+ "QTreeWidgetItem" => ["parent"],
31
36
  "QLayoutItem" => ["has_height_for_width", "height_for_width", "maximum_size", "minimum_size", "size_hint"],
32
37
  "QLayout" => ["maximum_size", "minimum_size"],
33
38
  "QWidget" => ["maximum_size", "minimum_size", "minimum_size_hint", "size_hint"],
34
39
  "QWindow" => ["maximum_size", "minimum_size"]
35
40
  }
36
41
  NO_VERIFY_QLASS_LEADING_UNDERSCORE_METHODS = {
42
+ "QSortFilterProxyModel" => ["_parent"],
43
+ "QFileSystemModel" => ["_parent"],
44
+ "QStandardItemModel" => ["_parent"],
37
45
  "QObject" => ["_connect", "_disconnect"],
38
46
  "QApplication" => ["_all_widgets", "_top_level_widgets"]
39
47
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-qt6-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Doe