Skip Menu |

This queue is for tickets about the Inline-Ruby CPAN distribution.

Report information
The Basics
Id: 128484
Status: new
Priority: 0/
Queue: Inline-Ruby

People
Owner: Nobody in particular
Requestors: hermit [...] acm.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: defining classes derived from StringIO failes with NoMethodError exception
Classes derived from StringIO cause a NoMethodError exception to be thrown when defined. The attached script yields: #<TypeError: no implicit conversion of NoMethodError into String> BEGIN failed--compilation aborted at /tmp/test.pl line 4. Patch forthcoming.
Subject: test.pl
#!/usr/bin/env perl use strict; use warnings; use Inline 'Ruby' => <<'EOF'; require 'stringio' class Test < StringIO end EOF