Skip to content

Instantly share code, notes, and snippets.

@bestie
Created July 5, 2021 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bestie/3aa0190953ffe35dcffdfa463fd1c38e to your computer and use it in GitHub Desktop.
Save bestie/3aa0190953ffe35dcffdfa463fd1c38e to your computer and use it in GitHub Desktop.
A Rack app for rick rollin'
body = <<~HTML
<html>
<body>
<div class="tenor-gif-embed" data-postid="12136175" data-share-method="host" data-width="100%" data-aspect-ratio="1.4777448071216617"><a href="https://tenor.com/view/rick-ashley-dance-80s-music-gif-12136175">Rick Ashley Dance GIF</a> from <a href="https://tenor.com/search/rickashley-gifs">Rickashley GIFs</a></div><script type="text/javascript" async src="https://tenor.com/embed.js"></script>
</body>
</html>
HTML
app = ->(env) {
[
200,
{
"Content-Type" => "text/html; charset=utf-8",
},
[body],
]
}
run app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment