Currently I am working on a project in rails 4 in which I have a user-page at example.com/username but it only finds the record if i use username in proper case, how can I p
you will have to use something similar to where("username ILIKE ?"). the ILIKE or similar syntax is dependant on your database though.
where("username ILIKE ?")
ILIKE