Skip to content

Instantly share code, notes, and snippets.

@searls
Created September 9, 2017 00:01
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 searls/84f332fe0842ef35b72249505fce9892 to your computer and use it in GitHub Desktop.
Save searls/84f332fe0842ef35b72249505fce9892 to your computer and use it in GitHub Desktop.
Ok, so there is one downside to webapp dev on an ipad…
app.puts = (...anything) => {
fetch("/api/puts", {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({content: anything})
})
}
module Api
class PutsController < ApiController
def create
puts <<~TEXT
Client logger says:
#{params[:content].map(&:to_json).join(", ")}
TEXT
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment