Sha256: d92710bcef8c14b8cc5ef94f086cc0b87fbf21bfe195674051edbb28afe43441
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
module Gretel class Crumbs class << self def controller # hack because Rails.application.routes.url_helpers needs a controller method end def layout(&block) # needs to be done here because Rails.application isn't set when this file is required self.class.send :include, Rails.application.routes.url_helpers self.class.send :include, ActionView::Helpers::UrlHelper instance_eval &block end def all @crumbs ||= {} end def crumb(name, &block) all[name] = block end def get_crumb(name, object = nil) raise "Crumb '#{name}' not found." unless all[name] @object = object # share the object so we can call it from link() and parent() @link = nil @parent = nil all[name].call(object) Gretel::Crumb.new(@link, @parent) end def link(text, url) text = text.call(@object) if text.is_a?(Proc) url = url.call(@object) if url.is_a?(Proc) @link = Gretel::Link.new(text, url) end def parent(name, object = nil) name = name.call(@object) if name.is_a?(Proc) object = object.call(@object) if object.is_a?(Proc) @parent = Gretel::Parent.new(name, object) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gretel-1.0.4 | lib/gretel/crumbs.rb |