We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if its a problem with this gem, or rubinius, but creating a Named::Class results in one with a nil name:
rubinius-2.0.0.n233 :001 > f = Named::Class.new("Foo") { def foo; 3; end; } => Named::Class:Object::0x71718 rubinius-2.0.0.n233 :002 > f.name => nil rubinius-2.0.0.n233 :003 > f = Named::Class.new("Foo", Array) { def foo; 3; end; } => Named::Class:Array::0x71848 rubinius-2.0.0.n233 :004 > f.name => nil rubinius-2.0.0.n233 :005 > f.name = "Foo" => "Foo" rubinius-2.0.0.n233 :006 > f.name => nil
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Not sure if its a problem with this gem, or rubinius, but creating a Named::Class results in one with a nil name:
The text was updated successfully, but these errors were encountered: