Sha256: 547a64412dea75bc5bbd312d0a9ec9970133d18b40d57afdd6d765f5bf2c7e33
Contents?: true
Size: 908 Bytes
Versions: 1
Compression:
Stored size: 908 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 259 2005-02-15 08:54:54Z gmosx $ require 'glue' require 'glue/logger' require 'nitro/context' require 'nitro/dispatcher' require 'nitro/render' require 'nitro/conf' require 'nitro/runner' # Define Nitro namespace. module Nitro # The name. Name = 'Nitro' # The version. Version = '0.10.0' # Library path. LibPath = File.dirname(__FILE__) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.10.0 | lib/nitro.rb |