Sha256: f3b941f5e5de86c80e388d370e9b743b13003a0ed334aadadfc6e65eb48f5b13
Contents?: true
Size: 636 Bytes
Versions: 49
Compression:
Stored size: 636 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'tagz' module Ramaze # Allows you to use some shortcuts for Tagz in your Controller. # use this inside your controller to directly build Tagz # Refer to the Tagz-documentation and testsuite for more examples. # Usage: # tagz { h1_{ "Apples & Oranges" } } #=> "<h1>Apples & Oranges</h1>" # tagz { h1_(:class => 'fruits&floots'){ 'Apples' } } #=> "<h1 class=\"fruits&floots\">Apples</h1>" module Helper Tagz = ::Tagz end end
Version data entries
49 entries across 49 versions & 6 rubygems