The !! is a double negation, an idiom which is used to convert any object to a true or false value.
It works because any object besides false and nil evaluate to true. Negating the object produces false, and negating that result returns true:
object = Object.new
not object
# => false
not not object
# => true
If we try to negate nil, we get true, and if we try to negate that result, we get false:
object = nil
not object
# => true
not not object
# => false
The code:
!!(v =~ /^[0-9]+$/) ? v.to_i : v
Converts the value returned by the v =~ /^[0-9]+$/ expression, which can be any object, to either true or false. The boolean value is then used as argument for the ternary operator.
It means: if the string contains an integer, then convert it to one, otherwise just return the string.