module Knock

Constants

VERSION

Public Class Methods

not_found_exception_class() click to toggle source
# File lib/knock.rb, line 22
def self.not_found_exception_class
  not_found_exception_class_name.to_s.constantize
end
setup() { |self| ... } click to toggle source

Default way to setup Knock. Run `rails generate knock:install` to create a fresh initializer with all configuration values.

# File lib/knock.rb, line 28
def self.setup
  yield self
end