Sha256: 6dc59d6fe29a9c5bf9fc0ef73bcd19db53bd12560e212f394089eee4311b18ef
Contents?: true
Size: 560 Bytes
Versions: 62
Compression:
Stored size: 560 Bytes
Contents
module ActionView module Helpers module ConditionalUrlHelper def link_to_if_with_block(condition, link, html_options = {}, &block) if condition link_to link, html_options, &block else capture &block end end def link_to_unless_with_block(condition, link, html_options = {}, &block) unless condition link_to link, html_options, &block else capture &block end end end end ActionView::Helpers.include(Helpers::ConditionalUrlHelper) end
Version data entries
62 entries across 62 versions & 1 rubygems