module Roda::RodaPlugins::ClassLevelRouting::ClassMethods

  1. lib/roda/plugins/class_level_routing.rb

Methods

Public Instance

  1. freeze

Public Instance methods

freeze()

Freeze the class level routes so that there can be no thread safety issues at runtime.

[show source]
   # File lib/roda/plugins/class_level_routing.rb
72 def freeze
73   opts[:class_level_routes].freeze
74   super
75 end