Less Grotty

Does what Revision 535 does, but
slightly less ugly.
This commit is contained in:
Jacques Distler 2010-01-25 22:01:10 -06:00
parent 9dc59b7b7c
commit cbb3e4b74f
3 changed files with 12 additions and 11 deletions

View file

@ -7,8 +7,6 @@ class AbstractUrlGenerator
@controller = controller
end
attr :controller
# Create a link for the given page (or file) name and link text based
# on the render mode in options and whether the page (file) exists
# in the web.
@ -55,7 +53,10 @@ class AbstractUrlGenerator
raise "Unknown link type: #{link_type}"
end
end
def url_for(hash = {})
@controller.url_for hash
end
end
class UrlGenerator < AbstractUrlGenerator