This application has requested the Runtime
to terminate it in an unusual way.
Please contact the application’s
support team for more information.
I got a related report. It seems that GTK+ 3 that is bundled
in gtk3 gem may be broken. (It is built by me on my Debian
GNU/Linux.)
The problem may be solved in the next release if I can build
GTK+ 3 Windows binary on my Debian GNU/Linux. Could you try
old gtk3 gems to find which version works well or doesn’t
work well? I know all gtk3 gems are broken or gtk3 2.0.2 gem
is only broken.
You can install and use old gtk3 gem by the following:
def check(version)
system(“gem”,“install”,“gtk3”,"–version",version)
5.times { puts }
r=system(“ruby”,“chkgtk.rb”,version)
5.times { puts }
print "seem to be #{r} : real return : " ; ret= STDIN.gets
ret && ret=~/[oyd]/i
end
def test(p0,dim)
iv=(p0+dim)/2
p [p0,iv,dim,$lversions[iv]]
version=$lversions[iv]
ok=check(version)
if p0>=dim
puts “pivot is version #{version} : #{ok}”
exit!(0)
end
ok ? test(p0,iv-1) : test(iv+1,dim)
end
test(0,$lversions.size-1)
else
gem “gtk3”, “= #{ARGV[0]}”
require ‘gtk3’
require ‘Ruiby’
Ruiby.app(title: ARGV[0]) do
stack {
buttoni(‘exit ok’,:height=>100) { exit!(0) }
label(ARGV[0],font: “Arial 25”)
label("Please resize me ",height: 200,width: 200)
after(1) { dialog { label(“Resize me too !”,height: 200,width:
200) ;} }
}
end
end