0
votes
5answers
77 views
Refactoring ActiveRecord models with a base class versus a base module
Class A and B are identical:
class A < ActiveRecord::Base
def foo
puts "foo"
end
end
class B < ActiveRecord::Base
def foo
puts "foo"
end
end
What's the difference between refactoring …
2
votes
4answers
128 views
Where to put common code found in multiple models?
I have two models that contain the same method:
def foo
# do something
end
Where should I put this?
I know common code goes in the lib directory in a Rails app.
But if I put it in a new class …
3
votes
3answers
57 views
Is there a BDD-style framework that allows multiple inherited behaviours?
Many of our system tests are written in a BDD style, and we make decent use of inherited behaviours to minimise duplication, for example this might be a basic hierarchy for purchase tests.
class …
0
votes
2answers
49 views
VCL multiple inheritance
Hi,
I'm trying to develop a set of controls which all have a number of common behaviours with respect to sizing. I think that this is an instance where multiple inheritance is required (although am …
0
votes
0answers
59 views
Abusing .NET 4.0 Interface Code Contracts feature to achieve MixIns functionality
.NET 4.0 has that new Code Contracts feature. It works with interfaces too, as described here (scroll down to somewhere in the comments):
…
2
votes
2answers
94 views
How can I get nose to find class attributes defined on a base test class?
I'm getting some integration tests running against the database, and I'd like to have a structure that looks something like this:
class OracleMixin(object):
oracle = True
# ... set up the …
0
votes
1answer
78 views
Overriding base class methods in a Controller
I'm trying to fool a very complex black box into displaying some floats differently (it's the Gruff graphing library, so this is being rendered to an image).
In the console, I can paste this:
…
0
votes
2answers
124 views
Initializing a Module mixed in to a Model
Hi,
I have this:
class Bullet < ActiveRecord::Base
include StagedVersionMethods
...
end
And this
module StagedVersionMethods
def initialize
puts self.bullet_id
end
end
…
2
votes
2answers
239 views
What is the difference between an Abstract Class and a Mixin?
I just found an article on a framework in Java that apparently allows it to support Mixins and something called Composite Oriented Programming (which for all I know might even be the same thing...) …
4
votes
2answers
370 views
Are there scala-like mixins for C++?
Scala Mixins
0
votes
2answers
90 views
What is the difference betwen including modules and embedding modules?
module Superpower
# instance method
def turn_invisible
...
end
# module method
def Superpower.turn_into_toad
...
end
module Fly
def flap_wings
...
…
