manveru / ramaze

Ramaze is a simple, light and modular open-source web application framework written in Ruby.

This URL has Read+Write access

ramaze / lib / ramaze / helper.rb
282e1e01 » manveru 2009-02-20 Update some copyrights and ... 1 # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
cb87f3ba » manveru 2006-12-11 this puts the helper-method... 2 # All files in this distribution are subject to the terms of the Ruby license.
3
983cede9 » manveru 2009-04-05 Simplify Helper with options 4 require 'innate/helper'
dcce38f5 » manveru 2009-03-29 Set Innates helper constant... 5
983cede9 » manveru 2009-04-05 Simplify Helper with options 6 module Ramaze
7 Helper = Innate::Helper
8 Innate::HelpersHelper.options.paths << File.dirname(__FILE__)
7467ff65 » manveru 2009-04-05 Fix Flash and Link helpers 9
10 require 'ramaze/helper/flash'
11 require 'ramaze/helper/link'
a84f6757 » Pistos 2009-05-27 Added Layout helper. 12 require 'ramaze/helper/layout'
cb87f3ba » manveru 2006-12-11 this puts the helper-method... 13 end