Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are using Elixir and it's versioned extension. We also have a mixin class that provides some required functionality.

class Checkpoint(Entity,JSONMixin):
    ... # fields
    acts_as_versioned()

Now, versions are available as CheckpointVersion instances, but they lack JSONMixin functionality.

How does one add that mixin base class to generated classes? Should one hack ext.versiones source or is there a straightforward technique?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.