wxruby3 0.9.0.pre.beta.13-x64-mingw-ucrt → 0.9.0.pre.beta.14-x64-mingw-ucrt

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: eae5f34dc00087633f430dc388c9c98306ec7df94ea5b7205834f34ca9117b8c
4
- data.tar.gz: 67dcfea784794e87c451a90ffe3338b324c3719c3285383de66d49b7a1556d66
3
+ metadata.gz: c9566b98341d3e7555931975c60c3facd1b10060b45187705b5603b86d084aff
4
+ data.tar.gz: 71b138ada2a3a20d5db75ba119afba4a6096685bde9d7e0c3d456b6b2070619e
5
5
  SHA512:
6
- metadata.gz: 5b725ae687bf826247fde3e8946833b52260081537d4561bd95ac4583b7b33bb529a4704b6e0937d4dc8888dd2a0dd3e0a97d8ca44b6afe7cced6a21debf3a82
7
- data.tar.gz: 2ed1d66559f48a8fb4a9b0be5c4c28fe863146b5ec66115804ef1c48c6c21ec1ff7963ddadfa043f0ffb0adaad0095b7c7c530ea4a3b776ba539dad8cc04ed69
6
+ metadata.gz: '09a36c57dffb1c98acb5203f4336b00c1863df09334f3d6e323b197f51e3661bafde7a3adf6951abd748d5ccb64130114f06b86a0251326892e3caf882b1a118'
7
+ data.tar.gz: 17f1643a1e7e22fa74b7ccc6f1ed3dae336e33a6a40702831dc46c318166f6de52b1dfd5445938de4dd1fd143a3e4d5555312b77ccc58aaf0fe904986d913b07
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/wx/accessors.rb CHANGED
@@ -56,8 +56,14 @@ module WxRubyStyleAccessors
56
56
 
57
57
  def self.included(mod)
58
58
  mod.extend WxRubyStyleAccessors
59
- mod.constants.collect { | c | mod.const_get(c) }.grep(Module).each do |mod|
60
- mod.include WxRubyStyleAccessors if mod.name.start_with?('Wx::') # only setup Wx namespace
59
+ org_verbose = $VERBOSE
60
+ begin
61
+ $VERBOSE = nil
62
+ mod.constants.collect { | c | mod.const_get(c) }.grep(Module).each do |mod|
63
+ mod.include WxRubyStyleAccessors if mod.name.start_with?('Wx::') # only setup Wx namespace
64
+ end
65
+ ensure
66
+ $VERBOSE = org_verbose
61
67
  end
62
68
  end
63
69
  end
@@ -7,10 +7,10 @@
7
7
  module Wx
8
8
 
9
9
  # wxRuby version string
10
- Wx::WXRUBY_VERSION = '0.9.0-beta.13'
10
+ Wx::WXRUBY_VERSION = '0.9.0-beta.14'
11
11
 
12
12
  # wxRuby version release type (alpha, beta, rc)
13
- Wx::WXRUBY_RELEASE_TYPE = 'beta.13'
13
+ Wx::WXRUBY_RELEASE_TYPE = 'beta.14'
14
14
  # wxRuby major version number
15
15
  Wx::WXRUBY_MAJOR = 0
16
16
  # wxRuby minor version number
@@ -7,24 +7,30 @@ module WxGlobalConstants
7
7
  def search_nested(mod, sym, path = [])
8
8
  # check any nested modules and/or (enum) classes
9
9
  const_val = nil
10
- mod.constants.each do |c|
11
- case cv = mod.const_get(c)
12
- when ::Class
13
- if cv < Wx::Enum
14
- # the only thing of interest in Enum classes are the enum values
15
- const_val = cv[sym]
16
- elsif cv.name.start_with?('Wx::') # only search Wx namespace
17
- # prevent const_missing being triggered here since that may lead to unexpected results
18
- const_val = cv.const_get(sym) if cv.constants.include?(sym)
19
- const_val = search_nested(cv, sym, path+[mod]) unless const_val || path.include?(cv)
20
- end
21
- when ::Module
22
- if cv.name.start_with?('Wx::') # only search Wx namespace
23
- const_val = cv.const_get(sym) if cv.constants.include?(sym)
24
- const_val = search_nested(cv, sym, path+[mod]) unless const_val || path.include?(cv)
25
- end
26
- end unless mod == cv # watch out for infinite recursion
27
- break if const_val
10
+ org_verbose = $VERBOSE
11
+ begin
12
+ $VERBOSE = nil
13
+ mod.constants.each do |c|
14
+ case cv = mod.const_get(c)
15
+ when ::Class
16
+ if cv < Wx::Enum
17
+ # the only thing of interest in Enum classes are the enum values
18
+ const_val = cv[sym]
19
+ elsif cv.name.start_with?('Wx::') # only search Wx namespace
20
+ # prevent const_missing being triggered here since that may lead to unexpected results
21
+ const_val = cv.const_get(sym) if cv.constants.include?(sym)
22
+ const_val = search_nested(cv, sym, path+[mod]) unless const_val || path.include?(cv)
23
+ end
24
+ when ::Module
25
+ if cv.name.start_with?('Wx::') # only search Wx namespace
26
+ const_val = cv.const_get(sym) if cv.constants.include?(sym)
27
+ const_val = search_nested(cv, sym, path+[mod]) unless const_val || path.include?(cv)
28
+ end
29
+ end unless mod == cv # watch out for infinite recursion
30
+ break if const_val
31
+ end
32
+ ensure
33
+ $VERBOSE = org_verbose
28
34
  end
29
35
  const_val
30
36
  end
data/lib/wx/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Wx
2
- WXRUBY_VERSION = '0.9.0-beta.13'
2
+ WXRUBY_VERSION = '0.9.0-beta.14'
3
3
  end
data/lib/wxruby_aui.so CHANGED
Binary file
data/lib/wxruby_core.so CHANGED
Binary file
data/lib/wxruby_grid.so CHANGED
Binary file
data/lib/wxruby_html.so CHANGED
Binary file
data/lib/wxruby_pg.so CHANGED
Binary file
data/lib/wxruby_prt.so CHANGED
Binary file
data/lib/wxruby_rbn.so CHANGED
Binary file
data/lib/wxruby_rtc.so CHANGED
Binary file
data/lib/wxruby_stc.so CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wxruby3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0.pre.beta.13
4
+ version: 0.9.0.pre.beta.14
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Martin Corino
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-21 00:00:00.000000000 Z
11
+ date: 2023-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake