Is there something built-in with Ruby to determine if a string is a reserved word? Something like "next".is_keyword??
|
|
|||||||||||
|
|
The only way I can think of is loading an array with all the keywords you know about.
For reference:
|
||||
|
|
|
As far as I know, http://wiki.rubyonrails.org/rails/pages/reservedwords lists reserved words you can't use (some of them only apply if you're using Rails or its dependencies), and method names that can cause problems. If this doesn't fully answer your question, can you define more fully whether you're interested in method names or variable names, and whether you're worried about words that can't be used at all, or words that may cause other things to go wrong? |
|||||||||||||
|
|
If you have a class where you want to implement a method called "protected", then before you define that method make an instance of that class and call
This will show you all the methods inherited for the class, and if "protected" is there then it is reserved by ruby. |
|||
|
|
Use Ruby gem rubykeyword. It does more than identifying the keyword. |
||||
|
|