[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ncurses module inclusion question

Jos Backus

8/29/2008 6:31:00 PM

lizzy:~% cat n
Math.sqrt(4)

include Math
sqrt(4)

require 'rubygems'
require 'ncurses'

Ncurses.initscr

include Ncurses
initscr
lizzy:~% ruby n 2> err
lizzy:~% cat err
n:12: undefined local variable or method `initscr' for main:Object (NameError)
%
lizzy:~%

Why does including Ncurses not have the same effect as including Math?

--
Jos Backus
jos at catnook.com

1 Answer

John Pritchard-williams

8/29/2008 7:14:00 PM

0

Jos,

Its a weird quirky feature I don't really understand - but managed to
put together this: I have to guess that Ncurses is defining a 'normal'
module, whereas I know (from my book!) that the Math library used
'Module#module_function'.

(My program but based on "The Ruby Programming Language : ISBN-10:
0-596-51617-7 , O'Reilly, Page 248 onwards (esp: page 251 "Includable
Namespace Modules").

Cheers

John

module Mymodule
Module#module_function
def method1
puts "method1 called"
end
end

module MyOtherModule
def MyOtherModule.method2
puts "method2 called"
end
end


include Mymodule
include MyOtherModule
Mymodule.method1
method1 # this will work.
MyOtherModule.method2
method2 #this will fail

Also note: if you do:

include Math
Object.respond_to?("sqrt")

You'll see that Object hasn't really grown a new method at all - it's
all a big trick ;-)
--
Posted via http://www.ruby-....