Suppose I have a module with the methods : function1,function2,function3. I want to import function1 and function2 but not function3. Is there a way to do this in ruby?
|
feedback
|
|
Not sure if there is a clean way to just add the methods you want, but you can remove the methods that you don't want by using
| |||
feedback
|
|
Similar solution but a tad more automatic. I have no idea what kind of weird things that can happen though.
| |||
|
feedback
|
|
Assuming you control the source code to the module, I think the cleanest way would be to split the module in to more, uh, modular pieces. If you only want some parts of a module, that's a pretty good sign that you could refactor that module into multiple modules that have less responsibility. | |||
|
feedback
|