How do you check whether a variable is defined in Ruby? Is there an "isset"-type method available?
|
|
|
|
|
|
|
use defined? It will return a string with the kind of the item or nil if it don't exist
|
||
|
|
|
|
|
||
|
|
|
|
this is useful if you want to do nothing if it does exist but create it if it doesn't exist
this only creates the new class once after that just keeps returning the var |
||
|
|
