search for: setup_d

Displaying 2 results from an estimated 2 matches for "setup_d".

Did you mean: setup_
2006 Aug 30
7
How to get it running...
...checked the appsdb, and the apllication is not listed there. I am running OpenSuSE 10.1 with wine-0.9.20-SuSELinux101.i586.rpm from the winehq download section. I have removed the previous ~/.wine directory and let wine create a default setup. Then i ran the exe: cd /media/GUT_1/ && wine Setup_D.exe The Installation Program started, i was able to accept the license and seect a installation path, and pressed next. Now i am back to the console. The installation window is still there and it is saying "System wir ?berpr?ft, Bitte warten..." (which means something like: Checking sys...
2012 Sep 14
1
calling method on base intended to simulate initialize on instances?
class A def initialize setup_b setup_c end def b_and_c "#{@b} and #{@c}" end private def setup_b @b = ''b'' end def setup_c @c = ''c'' end def setup_d @d = ''d'' end end a = A.new a.instance_variable_get("@b") # => "b" a.instance_variable_get("@c") # => "c" a.instance_variable_get("@d") # => nil a = A.new.b_and_c # => "b and c" Now what I did above is...