Skip to content

Instantly share code, notes, and snippets.

@venkatd
Last active February 7, 2016 17:40
Show Gist options
  • Save venkatd/761077095273193a3e9d to your computer and use it in GitHub Desktop.
Save venkatd/761077095273193a3e9d to your computer and use it in GitHub Desktop.
class Tasks < Roda
route do |r|
r.on 'tasks' do
authenticate!
r.get do
# ...
end
r.get ':id' do
# ...
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment