Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
2k views
12
votes
5answers
265 views

“The Ruby way” (mixins and class reopening) vs. dependency injection

In studying mixins vs. dependency injection, I often hear the phrase "the Ruby way." Often developers say something along the lines of Ruby lets you reopen classes and redefine methods means that ...
11
votes
2answers
259 views

Why are template mixins in C++ not more of a mainstay?

I use template mixins in C++ a lot, but I'm wondering why the technique isn't used more. It seems like the ultimate in reuse. This mix of power and efficiency is one of the reasons I really love C++ ...
9
votes
1answer
325 views

Does Google Dart support mixins?

I've skimmed through the language documentation and it seems that the Google Dart does not support mixins (no method bodies in interfaces, no multiple inheritance, no Ruby-like modules). Am I right ...
7
votes
2answers
483 views

Are Mixin class __init__ functions not automatically called in python?

I'd like to use a Mixin to always add some init functionality to my child classes which each inherit from different API base classes. Specifically, I'd like to make multiple different child classes ...
7
votes
1answer
1k views

How to use Maven 3 mixins?

I was trying to figure out how mixins are defined in Maven 3, but couldn't find anything other than buzz. It is propagated as one of the big new features here and here. I am currently feeling the pain ...
6
votes
4answers
104 views

Single Responsibility and Mixins

Given that Mixins generally introduce new behaviour into a class, this generally implies that a class would have more than one behaviour. If a class has a single responsibility this is defined as ...
5
votes
3answers
548 views

scala: mixins depending on type of arguments

I have a set of classes of models, and a set of algorithms that can be run on the models. Not all classes of models can perform all algorithms. I want model classes to be able to declare what ...
4
votes
2answers
879 views

How can I use mixins or modules in my controllers in Rails 3?

I have some behavior in my controller that I pulled out into a module in order to test better and re-use it in a few places. Two questions about this: Where is a good place to put my modules? They ...
4
votes
4answers
1k views

How to mixin and call link_to from controller in Rails?

This seems like a noob question, but the simple answer is eluding me. I need to call link_to in an ActionController method to spit out an HTML link. ActionView::Helpers::UrlHelper.link_to calls ...
4
votes
3answers
387 views

Mixins and .net

What are, exactly mixins? Are there any techniques to achieve that in c#?
4
votes
5answers
1k 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 ...
4
votes
4answers
600 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 ...
4
votes
2answers
412 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 ...
3
votes
1answer
57 views

Ruby & Modularization - Are there any clean & easy ways to exclude included||extended modules/mixins from classes?

Stackoverflowers! I've recently begun dabbling in Ruby, and I have a few questions. First some background: I'm used to C++ and Java inheritance, and have always had a dislike for how inheritance ...
3
votes
3answers
199 views

Is it possible to use mixins in php

I came to know about mixins.So my doubt is, is it possible to use mixins in php?If yes then how?
3
votes
1answer
204 views

Mixins with C# 4.0

I've seen various questions regarding if mixins can be created in C# and they are often directed to the re-mix project on codeplex. However, I don't know if I like the "complete interface" concept. ...
3
votes
1answer
108 views

In Castle.DynamicProxy is it possible to change a mixin value after initialisation?

I noticed that DynamicProxy objects can implement an IChangeProxyTarget interface, which allows you to do something like ((IChangeProxyTarget)myProxyObj).ChangeInvocationTarget(newTarget). Is there a ...
3
votes
2answers
482 views

How are Scala's traits not really traits?

Someone recently told me that Scala's traits aren't "true" traits, and that they were really just mixins. Unfortunately, I didn't get the opportunity to ask him why. Does anyone have an idea what he ...
3
votes
2answers
134 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 ...
3
votes
2answers
1k 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...) ...
2
votes
1answer
155 views

LESS mixins only working when declared in the same style sheet

I'm a little confused about something: I decided to make a global LESS document where I declare my mixins. When the mixins are referenced in other style sheets, they do not work. They only seem to ...
2
votes
2answers
118 views

Concurrency Actors and Traits in Scala

Folks, I'm new to Scala and am trying to figure something out. I've been messing around a bit with traits and I really like their ability to "mix in" functionality and interface. I've also been ...
2
votes
1answer
555 views

LESS css set dynamic background image with mixin

I am using LESS CSS . I am currently using Mixins with variables. Something like this works okay : .border-radius (@radius) { border-radius: @radius; } #header { .border-radius(4px); } This is ...
2
votes
2answers
189 views

Mixins, multi-inheritance, constructors, and data

I have a class: class A(object): def __init__(self, *args): # impl Also a "mixin", basically another class with some data and methods: class Mixin(object): def __init__(self): ...
2
votes
2answers
161 views

How to represent basic Mixin behavior in C++

Consider an existing C++ class hierarchy: one root class, many children classes forming a direct acyclic graph. I would like to add a method to the root class, and possibly override it in some ...
2
votes
1answer
544 views

Sass variable default scope

I have a problem with using variable defaults in Sass across scopes. My test example is: @mixin foo { $val: 'red' !default; .bar { color: $val; } } ...
2
votes
1answer
206 views

Multi-nested, multi-block mixins in lessphp

While transforming some code to lessphp from the classic less code; an incompatibility I discovered from the classic less css is that there is no support for multi-block mixins with nesting levels > ...
2
votes
1answer
639 views

Help creating a JavaScript mixin in Tapestry5?

I am creating a mixin which renders a javascript file when a textfield gains focus. I am new to the idea of mixins in Tapestry, and I am unsure of where to place my original javascript file which i ...
2
votes
2answers
533 views

What are the elegant ways to do MixIns in Python?

I need to find an elegant way to do 2 kinds of MixIns. First: class A(object): def method1(self): do_something() Now, a MixInClass should make method1 do this: do_other() -> ...
2
votes
6answers
194 views

What are some languages that currently support mixins?

Well obviously Ruby and Sass, but what are some other ones?
2
votes
1answer
369 views

Cannot access with_scope from a mixin

I just stumbled over a weird problem, and I don't really understand what is causing this. In our rails app, let's have a mixin Mixin: module Mixin def foo with_scope :find => ... do ...
2
votes
2answers
278 views

VCL multiple inheritance

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 fully ...
1
vote
0answers
12 views

newspeak mixin example

I've read the Newspeak on Squeak tutorial, but I could not find information or examples on mixins. It must be quite trivial, as any class is also a mixin, but could you give me an example? (or a ...
1
vote
1answer
32 views

Can Mixins interact with the class using it in DynamicProxy?

Is using Interceptors the only way for a mixin to interact with the calling class other mixins? I'm looking to do something like below. PsuedoCode class speak void Greet() { ...
1
vote
1answer
82 views

mixins: augmenting background-image property's value

Here is the following mixin: .a () {background-image: url(one.png);} now, I want .b inherits .a but it should add a second background image layer, eg: .b { .a; ...
1
vote
2answers
61 views

How do I properly use mock functionality for testing purposes in Rails?

I am new to using mixins, and I am more familiar with Java-based dependency injection. Let's say I use a mixin module to provide database connectivity for a class, as described at ...
1
vote
2answers
277 views

ruby mixin with class methods, instance methods, and class variables

Do you know how to define @@method_names class variable so that both my_macro and invoke_methods can use it as intended? Thank you! module MyModule module ClassMethods def my_macro ...
1
vote
3answers
134 views

making a SingletonMixin class in c++

I have four classes, let's call S1, S2, S3 and S4. These class are singletons; each one have a getInstance and a finalize method - and an instance private variable-. Now, to avoid repeting the ...
1
vote
1answer
535 views

call a class method from inside an instance method from a module mixin (rails)

Curious how one would go about calling a class method from inside an instance method of a module which is included by an active record class. For example I want both user and client models to share ...
1
vote
1answer
772 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): ...
0
votes
0answers
13 views

SASS mixin with arguments syntax error

I'm defining a mixing like this: // Image replacement @mixin img_replace($imgurl, $width, $height) { width: $width; height: $height; background: url('#{$imgurl}') no-repeat; text-indent: ...
0
votes
1answer
34 views

Mixin to define model associations in Rails 3.1

I have a range of different models which each share a polymorphic association with a Properties model. I'm trying to write a mixin to DRY the code up a bit, but they're not working, please can you ...
0
votes
1answer
40 views

Serializing Composed Objects

I see Composite Oriented Programming and DCI as interesting techniques to use within a rest framework, but have run into an issue. Is it possible to serialize a mixin object and get all it's ...
0
votes
1answer
20 views

Can sylesheets be tested in Rails?

Stylesheets used to use css which was a somewhat dumb framework. But now with sass, mixins and functions logic can be added to stylesheets. Just wondering with this change of paradigm if it is ...
0
votes
1answer
85 views

Rails 2.3 - implement dynamic named_scope using mixin

I use the following method_missing implementation to give a certain model an adaptable named_scope filtering: class Product < ActiveRecord::Base def self.method_missing(method_id, *args) # ...
0
votes
2answers
51 views

How can I change my DB schema while running a spec?

I want to test a model mixin, so I want to create a fake activerecord model to include it in, and then test the behavior of that model. The specs I have from another context require the db table of ...
0
votes
1answer
227 views

A Rails 3 Engine-Gem which is Also an Application wants to share a DRY configuration via Mixin

I have a number of engines which are also gems and also applications (Rails3). They are gems so they can be easily installed and the dependencies managed via bundler in more than one application (its ...
0
votes
2answers
130 views

How do I implement polymorphic behavior between two mixin templates?

I'm implementing mixins using C++ templates to support some "extended" behaviors for a base (templated) class. template< class Ch > Base {...}; template< class T > M1 : public T {...}; ...
0
votes
2answers
79 views

Good overview on mixin in ruby

I am a .NET developer and I want to learn more about how mixins are used in other languages. As mixins are well established in Ruby, I want to ask about good ressources on how mixins can be used in ...

1 2