Created
August 1, 2020 01:08
-
-
Save psylone/e9f124124b276f54b36cbbe97bad0012 to your computer and use it in GitHub Desktop.
Splitting Roda routes between files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'green' | |
class App < Roda | |
route do |r| | |
r.root do | |
raise | |
'root' | |
end | |
r.on 'green' do | |
r.run Green | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Green < Roda | |
route do |r| | |
r.is do | |
'green root' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment