Sha256: 286785fab4ac149cc8bf27c0c4eb43ff27045db52f12131b2ac7edee6e73ea23
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze # Allows you to use some shortcuts for markaby in your Controller. module MarkabyHelper private # use this inside your controller to directly build Markaby # Refer to the Markaby-documentation and testsuite for more examples. # Usage: # mab { h1 "Apples & Oranges"} #=> "<h1>Apples & Oranges</h1>" # mab { h1 'Apples', :class => 'fruits&floots' } #=> "<h1 class=\"fruits&floots\">Apples</h1>" def markaby(ivs = {}, helpers = nil, &block) builder = ::Markaby::Builder builder.extend(Ramaze::Helper) builder.send(:helper, :link) iv_hash = {} instance_variables.each do |iv| key, value = iv.gsub('@', '').to_sym, instance_variable_get(iv) iv_hash[key] = value end builder.new(iv_hash.merge(ivs), helpers, &block).to_s end alias mab markaby end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ramaze-0.1.3 | lib/ramaze/helper/markaby.rb |
ramaze-0.1.4 | lib/ramaze/helper/markaby.rb |
ramaze-0.2.1 | lib/ramaze/helper/markaby.rb |
ramaze-0.2.0 | lib/ramaze/helper/markaby.rb |