Sha256: f7759a806ebaee771b6e4cf54f87f7ecec5628ed99806061200cf89d5cf77255
Contents?: true
Size: 1009 Bytes
Versions: 1
Compression:
Stored size: 1009 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 340 2005-04-04 08:26:58Z gmosx $ require 'glue' require 'glue/logger' # Define Nitro namespace. module Nitro # The version. Version = '0.15.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' require 'nitro/part' require 'nitro/environment' unless $NITRO_NO_ENVIRONMENT
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.15.0 | lib/nitro.rb |