I have been using eval feature of ruby many a times. But I have heard people saying evals are nasty. When asked, why and how, I could never get a convincing reason not to use it. Are they really nasty? If yes, in what way? What are possible "safer" options to eval?
|
|
If you are The problem is analogous to SQL injection, if you're familiar. The solution here is similar to the solution to the injection problem (parameterized queries). That is, if the statements you would like to |
|||
|
|
In Ruby there are several gimmicks that might be more appropriate than
I think I am not able to explain them properly in detail, so I just gave you the hints, if you're interested you'll google. |
||||
|
|
|
Eval is an incredibly powerful feature which should be used carefully. Besides the security issues pointed out by Matt J, you will also find that debugging runtime evaluated code is extremely difficult. A problem in a runtime evaluated code block will be difficult for the interpreter to express - so looking for it will be difficult. That being said, if you are comfortable with that issue, and are not concerned about the security issue, then you should not avoid using one of the features that makes ruby as appealing as it is. |
|||
|
|
|
It makes debugging difficult. It makes optimization difficult. But most of all, it's usually a sign that there is a better way to do whatever you are trying to do. If you tell us what you are trying to accomplish with |
|||
|
|
|
In certain situations, a well-placed When it's all said and done, can anyone else read your code and understand what you did? If the answer is no, then what you've gained with an |
||||
|
|
|
Why is there |
|||
|
|
|
If you are passing anything that you get from the "outside" to
However, at least in Ruby 1.9.1, Ruby has really powerful meta-programming methods, and you could do the following instead:
For most purposes, you want to use these methods, and no escaping is needed. The other bad thing about |
|||||||
|