Sha256: 4b19e199219bbf712a83be9a2a05220596c2e7355d1dd44f6b323da6542b4938
Contents?: true
Size: 1013 Bytes
Versions: 1
Compression:
Stored size: 1013 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 20 2005-04-15 15:18:36Z gmosx $ require 'glue' require 'glue/logger' # Define Nitro namespace. module Nitro # The version. Version = '0.16.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/controller' require 'nitro/part' require 'nitro/environment' unless $NITRO_NO_ENVIRONMENT
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.16.0 | lib/nitro.rb |