Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created December 18, 2021 17:10
Show Gist options
  • Save kjlape/472bd284c6febf39fe06b3f6ba30dcc6 to your computer and use it in GitHub Desktop.
Save kjlape/472bd284c6febf39fe06b3f6ba30dcc6 to your computer and use it in GitHub Desktop.
class RawQueryParam < SimpleDelegator
def to_query(key)
"#{key}=#{value}"
end
end
# …
whatever_url(@whatever, host: "bogus.dev", blah: RawQueryParam.new("{test}"))
# => "http://bogus.dev/whatever?blah={test}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment