Search code examples
rubyrack

Get the current page URL in Ruby/Rack


I can't seem to find an answer to what should be simple. I'm using Serve, which runs on a WEBRick server. I'd like to be able to grab the current page's URL. How would I do that?


Solution

  • Since Serve uses Rack under the hood, try this in a view:

    <%= request.url %>