Sha256: ad86e6831347121a21446d0f809a18dd94ef8e7a1cc4c0975cb33c449fe88a2a
Contents?: true
Size: 614 Bytes
Versions: 11
Compression:
Stored size: 614 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: https://www.bridgetownrb.com/docs/routes class RodaApp < Roda plugin :bridgetown_server # 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
11 entries across 11 versions & 1 rubygems