Does Rails 3 or Ruby have a built-in way to check if a variable is an integer?
For example,
1.is_an_int #=> true \"dadadad@asdasd.net\".is_an_int
You can use triple equal.
if Integer === 21 puts "21 is Integer" end