12 lines
No EOL
194 B
Ruby
12 lines
No EOL
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 |