Sha256: 3d384209d1e4597b48de6e8434e2b33fafa672a89fff6712db10cad120dc3dde
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
# = Nitro # # Nitro is an efficient, yet simple engine for developing professional # Web Applications using the Ruby language. Nitro aims to provide a # robust infrastructure for scalable web applications that can be # distributed over a server cluster. However, Nitro can also power # simple web applications for deployment on intranets or even personal # computers. # # Nitro integrates the powerful Og Object-Relational mapping # library. # # * George Moschovitis <gm@navel.gr> # (c) 2004-2005 Navel, all rights reserved. # $Id: nitro.rb 300 2005-03-16 13:23:10Z gmosx $ require 'glue' require 'glue/logger' # Define Nitro namespace. module Nitro # The version. Version = '0.13.0' # Library path. LibPath = File.dirname(__FILE__) end # gmosx: leave them here. require 'nitro/context' require 'nitro/dispatcher' require 'nitro/render' require 'nitro/conf' require 'nitro/runner' require 'nitro/component'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.13.0 | lib/nitro.rb |