Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
88 views

Ruby: Using Reek as a Training Tool

Would Reek be useful in training a ruby noob in good practices or does it require an experienced ruby eye to use and interpret? I have mumble-muble years or programing experience but mostly in C ...
0
votes
1answer
625 views

Why does Eclipse complain about “Feature envy” smell in my code?

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
4answers
190 views

If we cache params into a local var in an action, will it help or its the same?

So we run a code quality tool called reek once in a while as part of our project. The tool basically looks for code smells and reports them. Here, we observed that we get "Duplication" smell every ...