Skip to content

Instantly share code, notes, and snippets.

@DEGoodmanWilson
Created October 20, 2016 23:43
Show Gist options
  • Save DEGoodmanWilson/5f144b13e3d7d44067ecd651eab53f25 to your computer and use it in GitHub Desktop.
Save DEGoodmanWilson/5f144b13e3d7d44067ecd651eab53f25 to your computer and use it in GitHub Desktop.
require 'grape'
class GoodInterfaceDesign < Grape::API
format :json
params do
requires :name, type: String
end
post '/' do
{:name => params[:name]}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment