I am having the hash with following keys
{:action=>'index', :controller=>'users', :search=>'John'}
I want to build a complete request url using this hash keys.
I tried using ActionDispatch::Routing::RouteSet
class, but I couldn't able to get the url as expected.
I want to build the url like http://localhost:3000/users?search=John
How to get this request url?