Reek, the code smell detector for Ruby

learn more… | top users | synonyms

1
vote
0answers
48 views

How to rectify DuplicateMethodCall from reek

How to rectify DuplicateMethodCall from reek on the following calls def to_str foo.blank? ? 'Value' : foo end How should I handle params[:some] should I declare it separately. if ...
-1
votes
1answer
133 views

No such file to load while running rake reek task

https://github.com/kevinrutherford/reek/wiki/Rake-Task I followed all the instructions in the above page to install the reek gem and run it, but I get the following error while running the rake reek ...
0
votes
2answers
193 views

Teach Me Code. Boolean parameters in methods. Why not?

I'm using reek as an analyzing tool for best practices in my code. However recently I found that if in the method, I have boolean parameters, such as. def method (flag = true) Reek gives me a ...
3
votes
3answers
194 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
712 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 = ...
2
votes
4answers
266 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 ...