-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
85 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
module Kangaru | ||
class Router | ||
class UndefinedControllerError < StandardError | ||
end | ||
|
||
class UndefinedActionError < StandardError | ||
end | ||
|
||
attr_reader command: Command | ||
attr_reader namespace: Module | ||
|
||
def initialize: (Command, ?namespace: Module) -> void | ||
|
||
private | ||
|
||
@controller_class: untyped | ||
|
||
def controller_class: -> untyped | ||
|
||
def validate_controller_defined!: -> void | ||
|
||
def validate_action_defined!: -> void | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters