1
vote
1answer
243 views
Feature envy smell in my code, pls explain?
Eclipse (RedRails) complain about "Feature envy" in the following code:
if input_text =~ /^(---\s*\n.*?\n?)(---.*?)/m
content_text = input_text[($1.size + $2.size)..-1] # warning in $1
header = …
0
votes
1answer
126 views
Any way to reconcile Feature Envy with Long Parameter List?
I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to …
