Merge pull request #71 from stephan-nordnes-eriksen/patch-1

Updating json sample
This commit is contained in:
Serdar Dogruyol 2016-01-29 14:41:56 +02:00
commit 69fd844008
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ require "json"
# You can easily access the context and set content_type like 'application/json'.
# Look how easy to build a JSON serving API.
get "/" do |env|
env.content_type = "application/json"
env.response.content_type = "application/json"
{name: "Serdar", age: 27}.to_json
end