public
Description: Ramaze is a simple, light and modular open-source web application framework written in Ruby.
Homepage: http://ramaze.net
Clone URL: git://github.com/manveru/ramaze.git
Click here to lend your support to: ramaze and make a donation at www.pledgie.com !
ramaze / lib / ramaze / helper.rb
100644 14 lines (10 sloc) 0.38 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.
 
require 'innate/helper'
 
module Ramaze
  Helper = Innate::Helper
  Innate::HelpersHelper.options.paths << File.dirname(__FILE__)
 
  require 'ramaze/helper/flash'
  require 'ramaze/helper/link'
  require 'ramaze/helper/layout'
end