golf down a bit

This commit is contained in:
Aaron Patterson 2014-05-28 17:42:34 -07:00
parent 3d0dc81a07
commit 75bfe64783

@ -239,8 +239,7 @@ def app
def default_controller_and_action
return {} if to.respond_to? :call
controller, action = get_controller_and_action(
default_controller,
controller, action = get_controller_and_action(default_controller,
default_action,
to,
@scope[:module]
@ -278,12 +277,9 @@ def check_part(name, part, hash)
def get_controller_and_action(controller, action, to, modyoule)
case to
when Symbol
action = to.to_s
when /#/
controller, action = to.split('#')
when String
controller = to
when Symbol then action = to.to_s
when /#/ then controller, action = to.split('#')
when String then controller = to
end
if modyoule && !controller.is_a?(Regexp)