Skip to content

Instantly share code, notes, and snippets.

@collin
Created November 12, 2008 16:40
Show Gist options
  • Save collin/24200 to your computer and use it in GitHub Desktop.
Save collin/24200 to your computer and use it in GitHub Desktop.
def define_link_renderer association_type=nil, &block
@link_renderer= LegacyPaginationLinkRenderer.new(if block_given?
block
else
lambda { |params|
url(association_type, :page => params[:page])
}
end)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment