4 5 6 7 8 9 10 11 12
# File 'lib/sinatra/params/bool.rb', line 4 def self.convert_to(type) table = { TrueClass => :itself, Boolean => :itself, String => :to_s } table[type] end