diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-11 15:25:20 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-11 15:25:20 +0100 |
commit | d28af4ec946c6aa4b645b73cef47d7e0c680bc0d (patch) | |
tree | a4bd08c76a80f104b959382cf4b7f107c3b83b54 /bin/jconsole | |
parent | 602cfd91a32eb8ce16792ae1dd5582cba01a1a38 (diff) |
Removed old java stuff
Diffstat (limited to 'bin/jconsole')
-rwxr-xr-x | bin/jconsole | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/jconsole b/bin/jconsole deleted file mode 100755 index 6e638ad..0000000 --- a/bin/jconsole +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env jruby - -require 'pp' -pp $: - -Thread.abort_on_exception = true -require 'irb' -require 'thread' - -# hack for delving into test-generated configurations -class AlertAndNotificationLogic; Alerts = Queue.new; end - -require 'mauve/configuration' -include Mauve -#raise "must specify config file" unless ARGV.length > 0 -unless ARGV.length > 0 - STDERR.print("You must specify a configuration file as $arg[1]\n") - STDERR.print(" eg: ./mauve_starter ./bin/console ./test/local.conf\n") - exit 1 -end -Configuration.current = ConfigurationBuilder.load(ARGV.shift) -IRB.start - |