Sha256: 0582336e5297ef5f58794bd2eb974f46645fb22fe5ccad3e191c6d8fd6eeda04

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

Nailgun
=======
  Nailgun is server that preloads JVM so no need to load JVM on each request.
  More you can read http://martiansoftware.com/nailgun
  nailgun is a ruby wrapper of nailgun server and itc command
  Make sure before installing You have to set class path environment variable
  which is point to jre/lib path.

Install
=======
> ./script/plugin install
Configuration
===========

These are the default settings which can be overwritten in your enviroment configuration file:

   Nailgun::NailgunConfig.options = {
    :java_bin => "java",          # java binary
    :server_address =>'localhost',
    :port_no=>'2113'
  }
    
Example
=======
To start nailgun server(if you want you can overwrite default configuration)
 script/nailgun start
To start nailgun server
 script/nailgun stop
To add client side jar
 Nailgun::NgCommand.ng_cp(absolute jar path)
To create alias of class
 Nailgun::NgCommand.ng_alias(alias name,class name)
 Make sure that class name is exist in client side jar path and its contain main
 To easy to use nailgun server best way is combine all jar to make one jar

Copyright (c) 2010 [amardaxini], released under the MIT license

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nailgun-0.0.1 README~