module MultitenantRoutes

Constants

VERSION

Public Class Methods

config() click to toggle source

Global settings

# File lib/multitenant_routes/config.rb, line 11
def self.config
  @config
end
configure() { |config ||= configuration| ... } click to toggle source

Configures global settings

# File lib/multitenant_routes/config.rb, line 6
def self.configure(&block)
  yield @config ||= MultitenantRoutes::Configuration.new
end