Guest User

Untitled

a guest
Jul 12th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. get '/' do
  2. erb :index
  3. end
  4.  
  5. get %r{/(.+)} do
  6. @url = params[:captures]
  7. erb :url
  8. end
  9.  
  10. post '/clippify' do
  11. @url ||= params[:clippy][:url]
  12. @bullet_1 = params[:clippy][:bullet_1] || "Share this with friends"
  13. @bullet_2 = params[:clippy][:bullet_2] || "Bookmark this link"
  14. redirect "/#{@url}"
  15. end
Add Comment
Please, Sign In to add comment