Sha256: dcbb6ead3e612d48a3af70ce0b1793479e279b046c96f44bdb3991dad716917c

Contents?: true

Size: 961 Bytes

Versions: 1

Compression:

Stored size: 961 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 270 2005-03-07 17:52:16Z gmosx $

require 'glue'
require 'glue/logger'

# Define Nitro namespace.

module Nitro

	# The name.

	Name = 'Nitro'

	# The version.

	Version = '0.12.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.12.0 lib/nitro.rb