Tagged Questions
12
votes
5answers
268 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 ...
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
603 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
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 ...
1
vote
2answers
280 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 ...
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
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 ...
0
votes
1answer
109 views
Ruby Module Inclusion in Methods
In class Foo I'd like to include method Bar under certain conditions:
module Bar
def some_method
"orly"
end
end
class Foo
def initialize(some_condition)
if !some_condition
...
0
votes
1answer
227 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
170 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
...
...