17 lines
222 B
Ruby
17 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'roda'
|
|
|
|
# A simple Roda app all in one file.
|
|
class App < Roda
|
|
route do |r|
|
|
r.root do
|
|
'My Homepage'
|
|
end
|
|
|
|
r.get 'about' do
|
|
'About This Site'
|
|
end
|
|
end
|
|
end
|