Sha256: 159dcfc9c4a3ce7eae42e6b629199c274fcf596530429d5985fe4604d7a6806d

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
#---# Author : Romain GEORGES
# type : gem component library
# obj : Dorsal Module
#---
require "dorsal/version"
require 'rubygems'
require 'methodic'
require 'drb/drb'
require 'dorsal/privates'
require 'dorsal/exceptions'
require 'dorsal/implementation'
require 'dorsal/controller'

# module Dorsal
# @author Romain GEORGES <romain@ultragreen.net>
# @see http://www.ultragreen.net/projects/dorsal
# @version (See Dorsal::VERSION)
# @note this module is a namespace Dorsal 
module Dorsal

  # the default dir where write pid files
  DEFAULT_DIR  = '/tmp/dorsal'

  # the default host name shared between Ring Server and DRb hosted services
  DEFAULT_HOST = 'localhost'
  
  # the default port of the Ring Server
  DEFAULT_PORT = '8686' 

  # the default shortname of the ringserver 
  DEFAULT_RINGSERVER_NAME = 'ringserver'

  # the default long description of the ring Server
  DEFAULT_RINGSERVER_DESCRIPTION = 'Dorsal Ring Server'
  
  # the default debug status
  DEFAULT_DEBUG = false


end











Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dorsal-1.3 lib/dorsal.rb
dorsal-1.2 lib/dorsal.rb
dorsal-1.1 lib/dorsal.rb