Top Level Namespace
Defined Under Namespace
Modules: Kernel, RubyText
Constant Summary
collapse
- X =
Curses
Instance Method Summary
collapse
Instance Method Details
#debug(*args) ⇒ Object
3
4
5
6
|
# File 'lib/output.rb', line 3
def debug(*args)
return unless $debug
$debug.puts *args
end
|
#fb2cp(fg, bg) ⇒ Object
2
3
4
5
6
7
8
9
|
# File 'lib/color.rb', line 2
def fb2cp(fg, bg)
fg ||= :blue
bg ||= :white
f2 = X.const_get("COLOR_#{fg.upcase}")
b2 = X.const_get("COLOR_#{bg.upcase}")
cp = $ColorPairs[[fg, bg]]
[f2, b2, cp]
end
|
#import(meth, recv) ⇒ Object
27
28
29
30
31
|
# File 'lib/rubytext.rb', line 27
def import(meth, recv)
Kernel.module_eval do
define_method(meth) {|*args| recv.send(meth, *args) }
end
end
|