Skip to content

Instantly share code, notes, and snippets.

@duhast
Created April 18, 2019 19:19
Show Gist options
  • Save duhast/96b0c3ea7746d7aec12ab1ebfead1a06 to your computer and use it in GitHub Desktop.
Save duhast/96b0c3ea7746d7aec12ab1ebfead1a06 to your computer and use it in GitHub Desktop.
Rails route lambda
MyRailsApp::Application.routes.draw do
get :have_fun, :to => proc { |env|
result = {some: 'data'}
res = result.to_json
[200, {"Content-Type" => 'application/json'}, [res]]
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment