Tagged Questions
The mop tag has no wiki summary.
9
votes
4answers
337 views
How can I extend Moose's automatic pragma exports?
You know how Moose automatically turns on strict and warnings during import? I want to extend that behavior by turning on autodie and use feature ':5.10' in my Moose classes.
I've tracked down where ...
4
votes
2answers
191 views
lisp: How to create temporary method specialization within a scope
In Common lisp: Redefine an existing function within a scope? the OP asked for something similar. But I want to create a method specializer, not a function.
Essentially suppose that a method is ...
4
votes
1answer
135 views
Test if a class is a subclass of another class in common lisp
How do I see if one CLOS class is a subclass of another CLOS class?
3
votes
1answer
230 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::CGI::ISA;
};
print ...
3
votes
1answer
496 views
Dealing with multiple-inherited constructors in Moose
Greetings,
I'm learning Moose and I'm trying to write a CGI::Application subclass with Moose, which is made difficult by the fact that CGI-App is not based on Moose.
In my other CGI-App subclasses, ...
2
votes
1answer
226 views
Does Ruby have a Metaobject protocol and if not, is it possible to implement one?
Pardon my ignorance, but What is a Metaobject protocol, and does Ruby have one? If not, is it possible to implement one for Ruby? What features might a Metaobject protocol possess if Ruby was to have ...
2
votes
1answer
826 views
Turning off inline constructors with MooseX::Declare
Greetings,
As a followup to my previous question about Moose, I've now run into a new problem. I've got a Moose class which uses Recipe 12 in order to extend a non-Moose parent class. Here it is:
...
1
vote
2answers
93 views
Strange class precedence list in sbcl
In sbcl,
*(sb-mop:class-precedence-list (find-class 'cons))
==>(#<BUILT-IN-CLASS CONS> #<BUILT-IN-CLASS LIST> #<BUILT-IN-CLASS SEQUENCE>
#<BUILT-IN-CLASS T>)
Isn't it ...
1
vote
3answers
213 views
Unit tests in Groovy for Java code - how to mock java classes?
I'm introducing Groovy in a large project written in Java, starting (as most of guys do) with writing unit test in Groovy for Java classes.
So the problem I have is:
Imagine I have 2 Java classes, ...
1
vote
1answer
396 views
Real-World Scheme OOP Programs?
I am working on a sort of "bug finder" for Scheme (R5RS) and I want to try if and how well it would work for object-oriented programming. Therefore I was looking at some of the numerous object systems ...
0
votes
0answers
22 views
Is there a workaround for a mongo bug where empty spaces are converted to nil?
This bug is happening on both Mongoid and MongoMapper, so I think it must be a Mongo bug. Is there a workaround for this until it is fixed? The only workaround I see is to make all my empty fields ...
0
votes
2answers
263 views
Groovy methodMissing
I have a closure within an object Foo and inside the closure i define a method called 'myStaticMethod' that I want to resolve once the closure is called outside the object Foo. I also happen to have ...
-2
votes
0answers
25 views
Can Lisp solve a Concept Oriented Programming? [closed]
Can Lisp or Functional programming solve "concept oriented programming" or "concept programming" problems using CLOS, Macros, Proxies, Agents, delegates, Mixins and Traits.
A scenario of ...