D
Davi Barbosa
Hello,
I installed eruby yesterday and I spend all night programming...
I'm trying to define a new method for class Array but apache2+mod_ruby
can't find the method!
A create a simple example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>error</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<%
class Array
def to_hash
{'test' => 'ing'}
end
end
print [1,2,3].to_hash
%>
</body>
When I try to open this page, I get this error:
simple.rhtml:18: undefined method `to_hash' for [1, 2, 3]:Array
(eval):117
/usr/lib/ruby/1.8/apache/eruby-run.rb:116:in `eval_string_wrap'
/usr/lib/ruby/1.8/apache/eruby-run.rb:116:in `run'
/usr/lib/ruby/1.8/apache/eruby-debug.rb:70:in `run'
/usr/lib/ruby/1.8/apache/eruby-debug.rb:56:in `handler'
If I try the same code in a sample ruby script, it works. Even if I try
directly with eruby it works:
$ eruby simple.rhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
[omitted output]
<body>
testing
</body>
Anyone have any idea?
Also, someone knows where to ask? I searched for a eruby mailing list or
forum but I did not find.
I installed eruby yesterday and I spend all night programming...
I'm trying to define a new method for class Array but apache2+mod_ruby
can't find the method!
A create a simple example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>error</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<%
class Array
def to_hash
{'test' => 'ing'}
end
end
print [1,2,3].to_hash
%>
</body>
When I try to open this page, I get this error:
simple.rhtml:18: undefined method `to_hash' for [1, 2, 3]:Array
(eval):117
/usr/lib/ruby/1.8/apache/eruby-run.rb:116:in `eval_string_wrap'
/usr/lib/ruby/1.8/apache/eruby-run.rb:116:in `run'
/usr/lib/ruby/1.8/apache/eruby-debug.rb:70:in `run'
/usr/lib/ruby/1.8/apache/eruby-debug.rb:56:in `handler'
If I try the same code in a sample ruby script, it works. Even if I try
directly with eruby it works:
$ eruby simple.rhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
[omitted output]
<body>
testing
</body>
Anyone have any idea?
Also, someone knows where to ask? I searched for a eruby mailing list or
forum but I did not find.