12 lines
194 B
Ruby
12 lines
194 B
Ruby
|
|
require "roda"
|
||
|
|
|
||
|
|
class App < Roda
|
||
|
|
# automatically sets application/json and encodes Ruby objects
|
||
|
|
plugin :json
|
||
|
|
|
||
|
|
route do |r|
|
||
|
|
r.get "hello" do
|
||
|
|
{ message: "world" }
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|