wxruby3 0.9.0.pre.beta.13-x64-mingw-ucrt → 0.9.0.pre.beta.14-x64-mingw-ucrt
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 +4 -4
- data/ext/wxbase32u_gcc_custom.dll +0 -0
- data/ext/wxbase32u_net_gcc_custom.dll +0 -0
- data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
- data/lib/wx/accessors.rb +8 -2
- data/lib/wx/doc/gen/core.rb +2 -2
- data/lib/wx/global_const.rb +24 -18
- data/lib/wx/version.rb +1 -1
- data/lib/wxruby_aui.so +0 -0
- data/lib/wxruby_core.so +0 -0
- data/lib/wxruby_grid.so +0 -0
- data/lib/wxruby_html.so +0 -0
- data/lib/wxruby_pg.so +0 -0
- data/lib/wxruby_prt.so +0 -0
- data/lib/wxruby_rbn.so +0 -0
- data/lib/wxruby_rtc.so +0 -0
- data/lib/wxruby_stc.so +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9566b98341d3e7555931975c60c3facd1b10060b45187705b5603b86d084aff
|
4
|
+
data.tar.gz: 71b138ada2a3a20d5db75ba119afba4a6096685bde9d7e0c3d456b6b2070619e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
60
|
-
|
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
|
data/lib/wx/doc/gen/core.rb
CHANGED
@@ -7,10 +7,10 @@
|
|
7
7
|
module Wx
|
8
8
|
|
9
9
|
# wxRuby version string
|
10
|
-
Wx::WXRUBY_VERSION = '0.9.0-beta.
|
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
|
+
Wx::WXRUBY_RELEASE_TYPE = 'beta.14'
|
14
14
|
# wxRuby major version number
|
15
15
|
Wx::WXRUBY_MAJOR = 0
|
16
16
|
# wxRuby minor version number
|
data/lib/wx/global_const.rb
CHANGED
@@ -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
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
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
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.
|
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-
|
11
|
+
date: 2023-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|