Sha256: d05a558ae25a03c365e95630ab2e37c054f7539702da027348d43f28553673a0
Contents?: true
Size: 590 Bytes
Versions: 6
Compression:
Stored size: 590 Bytes
Contents
# Roda is a simple Rack-based framework with a flexible architecture based # on the concept of a routing tree. Bridgetown uses it for its development # server, but you can also run it in production for fast, dynamic applications. # # Learn more at: http://roda.jeremyevans.net class RodaApp < Bridgetown::Rack::Roda # Some Roda configuration is handled in the `config/initializers.rb` file. # But you can also add additional Roda configuration here if needed. route do |r| # Load Roda routes in server/routes (and src/_routes via `bridgetown-routes`) r.bridgetown end end
Version data entries
6 entries across 6 versions & 1 rubygems