Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Oct 2014 10:01:41 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r371543 - in head/sysutils/logstash: . files
Message-ID:  <201410271001.s9RA1fk6000854@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Mon Oct 27 10:01:40 2014
New Revision: 371543
URL: https://svnweb.freebsd.org/changeset/ports/371543
QAT: https://qat.redports.org/buildarchive/r371543/

Log:
  Update to version 1.4.2
  
    - New maintainer: enrico.m.crisostomo@gmail.com
    - Work-around for jruby problems groking the scripted libc.so in
      FreeBSD 10.0 and above.
    - Upstream has switched from shipping one big .jar file to expanding
      everything in the filesystem.  This port has a long pkg-plist.
  
  PR:		194610
  Submitted by:	enrico.m.crisostomo@gmail.com (New maintainer)
  Approved by:	regis.despres@gmail.com (Outgoing maintainer)

Modified:
  head/sysutils/logstash/Makefile
  head/sysutils/logstash/distinfo
  head/sysutils/logstash/files/logstash.in   (contents, props changed)
  head/sysutils/logstash/pkg-plist

Modified: head/sysutils/logstash/Makefile
==============================================================================
--- head/sysutils/logstash/Makefile	Mon Oct 27 09:54:12 2014	(r371542)
+++ head/sysutils/logstash/Makefile	Mon Oct 27 10:01:40 2014	(r371543)
@@ -2,43 +2,64 @@
 # $FreeBSD$
 
 PORTNAME=	logstash
-PORTVERSION=	1.2.1
+PORTVERSION=	1.4.2
 CATEGORIES=	sysutils java
-MASTER_SITES=	https://logstash.objects.dreamhost.com/release/ \
-		https://download.elasticsearch.org/logstash/logstash/
-DISTNAME=	${PORTNAME}-${PORTVERSION}-flatjar
-EXTRACT_SUFX=	.jar
-EXTRACT_ONLY=
+MASTER_SITES=	https://download.elasticsearch.org/logstash/logstash/:0 \
+		https://github.com/emcrisostomo/jnr-ffi/releases/download/2.0.0/:1
+DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:0 jnr-ffi-2.0.0.jar:1
 
-MAINTAINER=	regis.despres@gmail.com
+MAINTAINER=	enrico.m.crisostomo@gmail.com
 COMMENT=	Tool for managing events and logs
 
-USE_JAVA=	yes
-JAVA_VERSION=	1.6+
+LICENSE=	APACHE20
 
+USE_JAVA=	yes
+JAVA_VERSION=	1.7+
+JAVA_EXTRACT=	yes
+JAVA_RUN=	yes
 NO_BUILD=	yes
 
+LOGSTASH_DIR=	${PREFIX}/${PORTNAME}
+
 USE_RC_SUBR=	logstash
 
 LOGSTASH_HOME?=	${PREFIX}/${PORTNAME}
-LOGSTASH_HOME_REL?=	${LOGSTASH_HOME:S,^${PREFIX}/,,}
-LOGSTASH_JAR?=	${DISTNAME}${EXTRACT_SUFX}
 LOGSTASH_RUN?=	/var/run/${PORTNAME}
 LOGSTASH_DATA_DIR?=	/var/db/${PORTNAME}
 
 SUB_LIST=	LOGSTASH_DATA_DIR=${LOGSTASH_DATA_DIR} JAVA_HOME=${JAVA_HOME} \
-		LOGSTASH_HOME=${LOGSTASH_HOME} LOGSTASH_JAR=${LOGSTASH_JAR}
-PLIST_SUB+=	LOGSTASH_HOME=${LOGSTASH_HOME_REL} LOGSTASH_JAR=${LOGSTASH_JAR} \
-		LOGSTASH_RUN=${LOGSTASH_RUN} \
-		LOGSTASH_DATA_DIR=${LOGSTASH_DATA_DIR}
+		LOGSTASH_HOME=${LOGSTASH_HOME}
+
+# Patch the logstash distribution using the patched jnr-ffi classes.
+JRUBY_JAR=	jruby-complete-1.7.11.jar
+post-patch:
+	@-${RM} -r ${WRKSRC}/vendor/jar/temp
+	@-${RM} ${WRKSRC}/vendor/jar/${JRUBY_JAR}.bak
+	@(cd ${WRKSRC}/vendor/jar && \
+	  ${MKDIR} temp && \
+	  ${CP} ${JRUBY_JAR} temp && \
+	  ${MV} ${JRUBY_JAR} ${JRUBY_JAR}.bak && \
+	  cd temp && \
+	  ${JAR} xf ${JRUBY_JAR} && \
+	  ${RM} ${JRUBY_JAR} && \
+	  ${RM} -r jnr/ffi)
+	@(cd ${WRKDIR}/jnr && ${CP} -r ffi ${WRKSRC}/vendor/jar/temp/jnr)
+	@(cd ${WRKSRC}/vendor/jar/temp && \
+	  ${JAR} cfm ../${JRUBY_JAR} META-INF/MANIFEST.MF .)
+	@(cd ${WRKSRC}/vendor/jar && ${RM} -r temp ${JRUBY_JAR}.bak)
 
+LOGSTASH_BIN_FILES=	logstash logstash-web
 do-install:
+	@${FIND} ${WRKSRC} -name '*.bat' -delete
 	${MKDIR} ${STAGEDIR}${ETCDIR}
-	${MKDIR} ${STAGEDIR}${LOGSTASH_HOME}
 	${MKDIR} ${STAGEDIR}${LOGSTASH_RUN}
 	${MKDIR} ${STAGEDIR}${LOGSTASH_DATA_DIR}
-	${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${LOGSTASH_JAR} ${STAGEDIR}${LOGSTASH_HOME}
+	@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${LOGSTASH_DIR})
 	${INSTALL_DATA} ${FILESDIR}/logstash.conf.sample ${STAGEDIR}${ETCDIR}
-	${INSTALL_DATA} ${FILESDIR}/elasticsearch.yml.sample ${STAGEDIR}${ETCDIR}
+	${INSTALL_DATA} ${FILESDIR}/logstash.conf ${STAGEDIR}${ETCDIR}
+	${INSTALL_DATA} ${FILESDIR}/elasticsearch.yml ${STAGEDIR}${ETCDIR}
+.for x in ${LOGSTASH_BIN_FILES}
+	@${CHMOD} ${BINMODE} ${STAGEDIR}${LOGSTASH_DIR}/bin/${x}
+.endfor
 
 .include <bsd.port.mk>

Modified: head/sysutils/logstash/distinfo
==============================================================================
--- head/sysutils/logstash/distinfo	Mon Oct 27 09:54:12 2014	(r371542)
+++ head/sysutils/logstash/distinfo	Mon Oct 27 10:01:40 2014	(r371543)
@@ -1,2 +1,4 @@
-SHA256 (logstash-1.2.1-flatjar.jar) = d0b8a56fb1aa71d54c2bab71709d900b359fdf8c6d7d6ff15578423a0d86ee23
-SIZE (logstash-1.2.1-flatjar.jar) = 81648562
+SHA256 (logstash-1.4.2.tar.gz) = d5be171af8d4ca966a0c731fc34f5deeee9d7631319e3660d1df99e43c5f8069
+SIZE (logstash-1.4.2.tar.gz) = 85619205
+SHA256 (jnr-ffi-2.0.0.jar) = bfe10bf5492667146a23fec12abab7ec96164f84d819f8785a8f44540f84f4d8
+SIZE (jnr-ffi-2.0.0.jar) = 648330

Modified: head/sysutils/logstash/files/logstash.in
==============================================================================
--- head/sysutils/logstash/files/logstash.in	Mon Oct 27 09:54:12 2014	(r371542)
+++ head/sysutils/logstash/files/logstash.in	Mon Oct 27 10:01:40 2014	(r371543)
@@ -1,30 +1,55 @@
 #!/bin/sh
 
-# $FreeBSD$
-#
-# PROVIDE: logstash
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-#
 # Configuration settings for logstash in /etc/rc.conf:
 #
 # logstash_enable (bool):
-#   Set to "NO" by default.
-#   Set it to "YES" to enable logstash
+#   Default value: "NO"
+#   Flag that determines whether Logstash is enabled.
+#
+# logstash_home (string):
+#   Default value: "/opt/logstash-1.4.2"
+#   Logstash installation directory.
+#
+# logstash_config (string):
+#   Default value: /usr/local/etc/${name}/${name}.conf
+#   Logstash configuration file path.
 #
-# logstash_mode :
-#   Set to "standalone" by default.
+# logstash_mode (string):
+#   Default value: "standalone"
 #   Valid options:
 #     "standalone": agent, web & elasticsearch
 #     "web": Starts logstash as a web ui
 #     "agent": Justs works as a log shipper 
 #
+# logstash_port (int):
+#   Default value: 9292
+#   Port of the Kibana web interface.
+# 
 # logstash_log (bool):
 #   Set to "NO" by default.
 #   Set it to "YES" to enable logstash logging to file
 #   Default output to /var/log/logstash.log
 #
+# logstash_log_file (string):
+#   Default value: "${logdir}/${name}.log"
+#   Log file path.
+#
+# logstash_java_home (string):
+#   Default value: "/usr/local/openjdk6"
+#   Root directory of the desired Java SDK.
+#   The JAVA_HOME environment variable is set with the contents of this
+#   variable.
+#
+# logstash_java_opts (string):
+#   Default value: ""
+#   Options to pass to the Java Virtual Machine.
+#   The JAVA_OPTS environment variable is set with the contents of this
+#   variable.
+#
+# logstash_elastic_datadir (string):
+#   Default value: "/var/db/logstash".
+#   Data directory of the embedded ElasticSearch instance.
+#
 
 . /etc/rc.subr
 
@@ -37,46 +62,50 @@ logdir="/var/log"
 
 : ${logstash_enable="NO"}
 : ${logstash_home="%%LOGSTASH_HOME%%"}
-: ${logstash_config="%%PREFIX%%/etc/${name}/${name}.conf"}
-: ${logstash_jar="%%LOGSTASH_HOME%%/%%LOGSTASH_JAR%%"}
-: ${logstash_java_home="%%JAVA_HOME%%"}
+: ${logstash_config="%%ETCDIR%%/${name}.conf"}
 : ${logstash_log="NO"}
 : ${logstash_mode="standalone"}
 : ${logstash_port="9292"}
-: ${logstash_elastic_backend=""}
 : ${logstash_log_file="${logdir}/${name}.log"}
 : ${logstash_elastic_datadir="%%LOGSTASH_DATA_DIR%%"}
+: ${logstash_java_home="%%JAVA_HOME%%"}
+: ${logstash_java_opts=""}
+: ${logstash_ffi_java_opts="-Djnr.ffi.asm.enabled=false"}
 
 piddir=/var/run/${name}
 pidfile=${piddir}/${name}.pid
 
 if [ -d $piddir ]; then
-	mkdir -p $piddir
+  mkdir -p $piddir
 fi
 
-command="/usr/sbin/daemon"
-
-java_cmd="${logstash_java_home}/bin/java"
-procname="${java_cmd}"
+logstash_cmd="${logstash_home}/bin/logstash"
+procname="${logstash_java_home}/bin/java"
 
 logstash_chdir=${logstash_home}
 logstash_log_options=""
 logstash_elastic_options=""
 
 if checkyesno logstash_log; then
-	logstash_log_options=" --log ${logstash_log_file}" 
+  logstash_log_options=" --log ${logstash_log_file}" 
 fi
 
 if [ ${logstash_mode} = "standalone" ]; then
-	logstash_args="agent -f ${logstash_config} ${logstash_log_options} -- web --port ${logstash_port}"
-	logstash_elastic_options="-Des.path.data=${logstash_elastic_datadir}"
+  logstash_args="agent -f ${logstash_config} ${logstash_log_options} -- web --port ${logstash_port}"
+  logstash_elastic_options="-Des.path.data=${logstash_elastic_datadir}"
 elif [ ${logstash_mode} = "agent" ]; then
-	logstash_args="agent -f ${logstash_config} ${logstash_log_options}"
+  logstash_args="agent -f ${logstash_config} ${logstash_log_options}"
 elif [ ${logstash_mode} = "web" ]; then
-	logstash_args="web --port ${logstash_port} ${logstash_log_options}"
+  logstash_args="web --port ${logstash_port} ${logstash_log_options}"
 fi
 
-command_args="-f -p ${pidfile} ${java_cmd} ${logstash_elastic_options} -jar ${logstash_jar} ${logstash_args}"
-required_files="${java_cmd} ${logstash_config}"
+JAVA_OPTS="${logstash_ffi_java_opts} ${logstash_java_opts} ${logstash_elastic_options}"
+JAVA_HOME="${logstash_java_home}"
+export JAVA_OPTS
+export JAVA_HOME
+
+command="/usr/sbin/daemon"
+command_args="-f -p ${pidfile} ${logstash_cmd} ${logstash_args}"
+required_files="${logstash_home} ${logstash_java_home} ${logstash_cmd} ${logstash_config}"
 
 run_rc_command "$1"

Modified: head/sysutils/logstash/pkg-plist
==============================================================================
--- head/sysutils/logstash/pkg-plist	Mon Oct 27 09:54:12 2014	(r371542)
+++ head/sysutils/logstash/pkg-plist	Mon Oct 27 10:01:40 2014	(r371543)
@@ -1,13 +1,14936 @@
-%%LOGSTASH_HOME%%/%%LOGSTASH_JAR%%
-@exec mkdir -p %%LOGSTASH_RUN%%
-@exec mkdir -p %%LOGSTASH_DATA_DIR%%
-@unexec if cmp -s %D/%%ETCDIR%%/logstash.conf.sample %D/%%ETCDIR%%/logstash.conf; then rm -f %D/%%ETCDIR%%/logstash.conf; fi
+%%ETCDIR%%/elasticsearch.yml
+%%ETCDIR%%/logstash.conf
 %%ETCDIR%%/logstash.conf.sample
-@exec if [ ! -f  %D/%%ETCDIR%%/logstash.conf ] ; then cp -p %D/%F %B/logstash.conf; fi
-@unexec if cmp -s %D/%%ETCDIR%%/elasticsearch.yml.sample %D/%%ETCDIR%%/elasticsearch.yml; then rm -f %D/%%ETCDIR%%/elasticsearch.yml; fi
-%%ETCDIR%%/elasticsearch.yml.sample
-@exec if [ ! -f  %D/%%ETCDIR%%/elasticsearch.yml ] ; then cp -p %D/%F %B/elasticsearch.yml; fi
-@dirrmtry %%LOGSTASH_HOME%%
-@dirrmtry %%ETCDIR%%
-@unexec rmdir %%LOGSTASH_DATA_DIR%% 2>/dev/null || true
-@unexec rmdir %%LOGSTASH_RUN%% 2>/dev/null || true
+logstash/LICENSE
+logstash/README.md
+logstash/bin/logstash
+logstash/bin/logstash-test
+logstash/bin/logstash-web
+logstash/bin/logstash.lib.sh
+logstash/bin/plugin
+logstash/lib/logstash-event.rb
+logstash/lib/logstash.rb
+logstash/lib/logstash/JRUBY-PR1448.rb
+logstash/lib/logstash/agent.rb
+logstash/lib/logstash/certs/cacert.pem
+logstash/lib/logstash/codecs/base.rb
+logstash/lib/logstash/codecs/collectd.rb
+logstash/lib/logstash/codecs/dots.rb
+logstash/lib/logstash/codecs/edn.rb
+logstash/lib/logstash/codecs/edn_lines.rb
+logstash/lib/logstash/codecs/fluent.rb
+logstash/lib/logstash/codecs/graphite.rb
+logstash/lib/logstash/codecs/json.rb
+logstash/lib/logstash/codecs/json_lines.rb
+logstash/lib/logstash/codecs/json_spooler.rb
+logstash/lib/logstash/codecs/line.rb
+logstash/lib/logstash/codecs/msgpack.rb
+logstash/lib/logstash/codecs/multiline.rb
+logstash/lib/logstash/codecs/netflow.rb
+logstash/lib/logstash/codecs/netflow/netflow.yaml
+logstash/lib/logstash/codecs/netflow/util.rb
+logstash/lib/logstash/codecs/noop.rb
+logstash/lib/logstash/codecs/oldlogstashjson.rb
+logstash/lib/logstash/codecs/plain.rb
+logstash/lib/logstash/codecs/rubydebug.rb
+logstash/lib/logstash/codecs/spool.rb
+logstash/lib/logstash/config/Makefile
+logstash/lib/logstash/config/config_ast.rb
+logstash/lib/logstash/config/file.rb
+logstash/lib/logstash/config/grammar.rb
+logstash/lib/logstash/config/grammar.treetop
+logstash/lib/logstash/config/mixin.rb
+logstash/lib/logstash/config/registry.rb
+logstash/lib/logstash/config/test.conf
+logstash/lib/logstash/environment.rb
+logstash/lib/logstash/errors.rb
+logstash/lib/logstash/event.rb
+logstash/lib/logstash/filters/anonymize.rb
+logstash/lib/logstash/filters/base.rb
+logstash/lib/logstash/filters/checksum.rb
+logstash/lib/logstash/filters/clone.rb
+logstash/lib/logstash/filters/csv.rb
+logstash/lib/logstash/filters/date.rb
+logstash/lib/logstash/filters/dns.rb
+logstash/lib/logstash/filters/drop.rb
+logstash/lib/logstash/filters/fingerprint.rb
+logstash/lib/logstash/filters/geoip.rb
+logstash/lib/logstash/filters/grok.rb
+logstash/lib/logstash/filters/grokdiscovery.rb
+logstash/lib/logstash/filters/json.rb
+logstash/lib/logstash/filters/kv.rb
+logstash/lib/logstash/filters/metrics.rb
+logstash/lib/logstash/filters/multiline.rb
+logstash/lib/logstash/filters/mutate.rb
+logstash/lib/logstash/filters/noop.rb
+logstash/lib/logstash/filters/ruby.rb
+logstash/lib/logstash/filters/sleep.rb
+logstash/lib/logstash/filters/split.rb
+logstash/lib/logstash/filters/syslog_pri.rb
+logstash/lib/logstash/filters/throttle.rb
+logstash/lib/logstash/filters/urldecode.rb
+logstash/lib/logstash/filters/useragent.rb
+logstash/lib/logstash/filters/uuid.rb
+logstash/lib/logstash/filters/xml.rb
+logstash/lib/logstash/filterworker.rb
+logstash/lib/logstash/inputs/base.rb
+logstash/lib/logstash/inputs/collectd.rb
+logstash/lib/logstash/inputs/elasticsearch.rb
+logstash/lib/logstash/inputs/eventlog.rb
+logstash/lib/logstash/inputs/exec.rb
+logstash/lib/logstash/inputs/file.rb
+logstash/lib/logstash/inputs/ganglia.rb
+logstash/lib/logstash/inputs/ganglia/gmondpacket.rb
+logstash/lib/logstash/inputs/ganglia/xdr.rb
+logstash/lib/logstash/inputs/gelf.rb
+logstash/lib/logstash/inputs/generator.rb
+logstash/lib/logstash/inputs/graphite.rb
+logstash/lib/logstash/inputs/imap.rb
+logstash/lib/logstash/inputs/invalid_input.rb
+logstash/lib/logstash/inputs/irc.rb
+logstash/lib/logstash/inputs/log4j.rb
+logstash/lib/logstash/inputs/lumberjack.rb
+logstash/lib/logstash/inputs/pipe.rb
+logstash/lib/logstash/inputs/rabbitmq.rb
+logstash/lib/logstash/inputs/rabbitmq/bunny.rb
+logstash/lib/logstash/inputs/rabbitmq/hot_bunnies.rb
+logstash/lib/logstash/inputs/rabbitmq/march_hare.rb
+logstash/lib/logstash/inputs/redis.rb
+logstash/lib/logstash/inputs/s3.rb
+logstash/lib/logstash/inputs/snmptrap.rb
+logstash/lib/logstash/inputs/sqs.rb
+logstash/lib/logstash/inputs/stdin.rb
+logstash/lib/logstash/inputs/syslog.rb
+logstash/lib/logstash/inputs/tcp.rb
+logstash/lib/logstash/inputs/threadable.rb
+logstash/lib/logstash/inputs/twitter.rb
+logstash/lib/logstash/inputs/udp.rb
+logstash/lib/logstash/inputs/unix.rb
+logstash/lib/logstash/inputs/xmpp.rb
+logstash/lib/logstash/inputs/zeromq.rb
+logstash/lib/logstash/kibana.rb
+logstash/lib/logstash/logging.rb
+logstash/lib/logstash/monkeypatches-for-debugging.rb
+logstash/lib/logstash/multiqueue.rb
+logstash/lib/logstash/namespace.rb
+logstash/lib/logstash/outputs/base.rb
+logstash/lib/logstash/outputs/cloudwatch.rb
+logstash/lib/logstash/outputs/csv.rb
+logstash/lib/logstash/outputs/elasticsearch.rb
+logstash/lib/logstash/outputs/elasticsearch/elasticsearch-template.json
+logstash/lib/logstash/outputs/elasticsearch/protocol.rb
+logstash/lib/logstash/outputs/elasticsearch_http.rb
+logstash/lib/logstash/outputs/elasticsearch_river.rb
+logstash/lib/logstash/outputs/email.rb
+logstash/lib/logstash/outputs/exec.rb
+logstash/lib/logstash/outputs/file.rb
+logstash/lib/logstash/outputs/ganglia.rb
+logstash/lib/logstash/outputs/gelf.rb
+logstash/lib/logstash/outputs/graphite.rb
+logstash/lib/logstash/outputs/hipchat.rb
+logstash/lib/logstash/outputs/http.rb
+logstash/lib/logstash/outputs/irc.rb
+logstash/lib/logstash/outputs/juggernaut.rb
+logstash/lib/logstash/outputs/lumberjack.rb
+logstash/lib/logstash/outputs/nagios.rb
+logstash/lib/logstash/outputs/nagios_nsca.rb
+logstash/lib/logstash/outputs/null.rb
+logstash/lib/logstash/outputs/opentsdb.rb
+logstash/lib/logstash/outputs/pagerduty.rb
+logstash/lib/logstash/outputs/pipe.rb
+logstash/lib/logstash/outputs/rabbitmq.rb
+logstash/lib/logstash/outputs/rabbitmq/bunny.rb
+logstash/lib/logstash/outputs/rabbitmq/hot_bunnies.rb
+logstash/lib/logstash/outputs/rabbitmq/march_hare.rb
+logstash/lib/logstash/outputs/redis.rb
+logstash/lib/logstash/outputs/s3.rb
+logstash/lib/logstash/outputs/sns.rb
+logstash/lib/logstash/outputs/sqs.rb
+logstash/lib/logstash/outputs/statsd.rb
+logstash/lib/logstash/outputs/stdout.rb
+logstash/lib/logstash/outputs/tcp.rb
+logstash/lib/logstash/outputs/udp.rb
+logstash/lib/logstash/outputs/xmpp.rb
+logstash/lib/logstash/outputs/zeromq.rb
+logstash/lib/logstash/pipeline.rb
+logstash/lib/logstash/plugin.rb
+logstash/lib/logstash/plugin_mixins/aws_config.rb
+logstash/lib/logstash/program.rb
+logstash/lib/logstash/runner.rb
+logstash/lib/logstash/sized_queue.rb
+logstash/lib/logstash/threadwatchdog.rb
+logstash/lib/logstash/time_addon.rb
+logstash/lib/logstash/util.rb
+logstash/lib/logstash/util/accessors.rb
+logstash/lib/logstash/util/buftok.rb
+logstash/lib/logstash/util/charset.rb
+logstash/lib/logstash/util/fieldreference.rb
+logstash/lib/logstash/util/password.rb
+logstash/lib/logstash/util/prctl.rb
+logstash/lib/logstash/util/require-helper.rb
+logstash/lib/logstash/util/socket_peer.rb
+logstash/lib/logstash/util/zeromq.rb
+logstash/lib/logstash/version.rb
+logstash/locales/en.yml
+logstash/patterns/firewalls
+logstash/patterns/grok-patterns
+logstash/patterns/haproxy
+logstash/patterns/java
+logstash/patterns/junos
+logstash/patterns/linux-syslog
+logstash/patterns/mcollective
+logstash/patterns/mcollective-patterns
+logstash/patterns/mongodb
+logstash/patterns/nagios
+logstash/patterns/postgresql
+logstash/patterns/redis
+logstash/patterns/ruby
+logstash/spec/README.md
+logstash/spec/codecs/collectd.rb
+logstash/spec/codecs/edn.rb
+logstash/spec/codecs/edn_lines.rb
+logstash/spec/codecs/graphite.rb
+logstash/spec/codecs/json.rb
+logstash/spec/codecs/json_lines.rb
+logstash/spec/codecs/json_spooler.rb
+logstash/spec/codecs/msgpack.rb
+logstash/spec/codecs/multiline.rb
+logstash/spec/codecs/oldlogstashjson.rb
+logstash/spec/codecs/plain.rb
+logstash/spec/codecs/spool.rb
+logstash/spec/conditionals/test.rb
+logstash/spec/config.rb
+logstash/spec/environment.rb
+logstash/spec/event.rb
+logstash/spec/examples/fail2ban.rb
+logstash/spec/examples/graphite-input.rb
+logstash/spec/examples/mysql-slow-query.rb
+logstash/spec/examples/parse-apache-logs.rb
+logstash/spec/examples/parse-haproxy-logs.rb
+logstash/spec/examples/syslog.rb
+logstash/spec/filters/anonymize.rb
+logstash/spec/filters/checksum.rb
+logstash/spec/filters/clone.rb
+logstash/spec/filters/csv.rb
+logstash/spec/filters/date.rb
+logstash/spec/filters/date_performance.rb
+logstash/spec/filters/dns.rb
+logstash/spec/filters/drop.rb
+logstash/spec/filters/fingerprint.rb
+logstash/spec/filters/geoip.rb
+logstash/spec/filters/grok.rb
+logstash/spec/filters/grok/timeout2.rb
+logstash/spec/filters/grok/timeouts.rb
+logstash/spec/filters/json.rb
+logstash/spec/filters/kv.rb
+logstash/spec/filters/metrics.rb
+logstash/spec/filters/multiline.rb
+logstash/spec/filters/mutate.rb
+logstash/spec/filters/noop.rb
+logstash/spec/filters/split.rb
+logstash/spec/filters/throttle.rb
+logstash/spec/filters/urldecode.rb
+logstash/spec/filters/useragent.rb
+logstash/spec/filters/xml.rb
+logstash/spec/inputs/collectd.rb
+logstash/spec/inputs/file.rb
+logstash/spec/inputs/gelf.rb
+logstash/spec/inputs/generator.rb
+logstash/spec/inputs/imap.rb
+logstash/spec/inputs/log4j.rb
+logstash/spec/inputs/pipe.rb
+logstash/spec/inputs/redis.rb
+logstash/spec/inputs/syslog.rb
+logstash/spec/inputs/tcp.rb
+logstash/spec/jar.rb
+logstash/spec/outputs/csv.rb
+logstash/spec/outputs/elasticsearch.rb
+logstash/spec/outputs/elasticsearch_http.rb
+logstash/spec/outputs/elasticsearch_river.rb
+logstash/spec/outputs/email.rb
+logstash/spec/outputs/file.rb
+logstash/spec/outputs/graphite.rb
+logstash/spec/outputs/redis.rb
+logstash/spec/runner_spec.rb
+logstash/spec/speed.rb
+logstash/spec/support/LOGSTASH-733.rb
+logstash/spec/support/LOGSTASH-820.rb
+logstash/spec/support/akamai-grok.rb
+logstash/spec/support/date-http.rb
+logstash/spec/support/pull375.rb
+logstash/spec/test_utils.rb
+logstash/spec/util/accessors_spec.rb
+logstash/spec/util/charset_spec.rb
+logstash/spec/util/fieldeval_spec.rb
+logstash/spec/web.rb
+logstash/vendor/bundle/jruby/1.9/bin/autospec
+logstash/vendor/bundle/jruby/1.9/bin/aws-rb
+logstash/vendor/bundle/jruby/1.9/bin/bundle
+logstash/vendor/bundle/jruby/1.9/bin/bundler
+logstash/vendor/bundle/jruby/1.9/bin/coderay
+logstash/vendor/bundle/jruby/1.9/bin/convert_to_should_syntax
+logstash/vendor/bundle/jruby/1.9/bin/gelfd
+logstash/vendor/bundle/jruby/1.9/bin/geoip
+logstash/vendor/bundle/jruby/1.9/bin/globtail
+logstash/vendor/bundle/jruby/1.9/bin/htmldiff
+logstash/vendor/bundle/jruby/1.9/bin/ldiff
+logstash/vendor/bundle/jruby/1.9/bin/nokogiri
+logstash/vendor/bundle/jruby/1.9/bin/protoc-gen-beefcake
+logstash/vendor/bundle/jruby/1.9/bin/pry
+logstash/vendor/bundle/jruby/1.9/bin/rackup
+logstash/vendor/bundle/jruby/1.9/bin/rspec
+logstash/vendor/bundle/jruby/1.9/bin/rubygems-cabin-test
+logstash/vendor/bundle/jruby/1.9/bin/tilt
+logstash/vendor/bundle/jruby/1.9/bin/tt
+logstash/vendor/bundle/jruby/1.9/build_info/activesupport-3.2.17.info
+logstash/vendor/bundle/jruby/1.9/build_info/activesupport-4.1.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/addressable-2.3.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/addressable-2.3.6.info
+logstash/vendor/bundle/jruby/1.9/build_info/atomic-1.1.15-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/atomic-1.1.16-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/avl_tree-1.1.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/awesome_print-1.2.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/aws-sdk-1.35.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/aws-sdk-1.41.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/backports-3.6.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/beefcake-0.3.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/bindata-2.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/bindata-2.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/blankslate-2.1.2.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/buftok-0.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/builder-3.2.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/cabin-0.6.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/ci_reporter-1.9.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/ci_reporter-1.9.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/cinch-2.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/clamp-0.6.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/coderay-1.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/diff-lcs-1.2.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/edn-1.0.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/edn-1.0.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-1.0.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-1.0.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-api-1.0.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-api-1.0.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-transport-1.0.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/elasticsearch-transport-1.0.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/extlib-0.9.16.info
+logstash/vendor/bundle/jruby/1.9/build_info/faraday-0.9.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/ffi-1.9.3-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/ffi-rzmq-1.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/filewatch-0.5.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/ftw-0.0.39.info
+logstash/vendor/bundle/jruby/1.9/build_info/gelf-1.3.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/gelfd-0.2.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/geoip-1.3.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/geoip-1.4.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/gmetric-0.1.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/hitimes-1.2.1-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/http-0.5.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/http_parser.rb-0.5.3-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/i18n-0.6.9.info
+logstash/vendor/bundle/jruby/1.9/build_info/insist-1.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/jls-grok-0.10.12.info
+logstash/vendor/bundle/jruby/1.9/build_info/jls-lumberjack-0.0.20.info
+logstash/vendor/bundle/jruby/1.9/build_info/jrjackson-0.2.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/jruby-httpclient-1.1.1-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/jruby-openssl-0.8.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/json-1.8.1-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/mail-2.5.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/march_hare-2.1.2-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/metaclass-0.0.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/method_source-0.8.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/metriks-0.9.9.6.info
+logstash/vendor/bundle/jruby/1.9/build_info/mime-types-1.25.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/mini_portile-0.5.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/minitest-5.3.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/minitest-5.3.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/mocha-1.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/mocha-1.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/msgpack-jruby-1.4.0-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/multi_json-1.10.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/multi_json-1.8.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/multipart-post-2.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/murmurhash3-0.1.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/nokogiri-1.6.1-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/nokogiri-1.6.2.1-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/parslet-1.4.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/polyglot-0.3.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/pry-0.9.12.6-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/rack-1.5.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/rack-protection-1.5.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/rack-protection-1.5.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/rbnacl-2.0.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/rbnacl-3.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/redis-3.0.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/rspec-2.14.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/rspec-core-2.14.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/rspec-core-2.14.8.info
+logstash/vendor/bundle/jruby/1.9/build_info/rspec-expectations-2.14.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/rspec-mocks-2.14.6.info
+logstash/vendor/bundle/jruby/1.9/build_info/rufus-scheduler-2.0.24.info
+logstash/vendor/bundle/jruby/1.9/build_info/rumbster-1.1.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/shoulda-3.5.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/shoulda-context-1.1.6.info
+logstash/vendor/bundle/jruby/1.9/build_info/shoulda-context-1.2.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/shoulda-matchers-2.5.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/shoulda-matchers-2.6.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/simple_oauth-0.2.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/sinatra-1.4.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/sinatra-1.4.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/slop-3.4.7.info
+logstash/vendor/bundle/jruby/1.9/build_info/slop-3.5.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/snmp-1.1.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/spoon-0.0.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/statsd-ruby-1.2.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/stud-0.0.17.info
+logstash/vendor/bundle/jruby/1.9/build_info/thread_safe-0.2.0-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/thread_safe-0.3.3-java.info
+logstash/vendor/bundle/jruby/1.9/build_info/tilt-1.4.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/treetop-1.4.15.info
+logstash/vendor/bundle/jruby/1.9/build_info/twitter-5.0.0.rc.1.info
+logstash/vendor/bundle/jruby/1.9/build_info/tzinfo-1.1.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/tzinfo-1.2.0.info
+logstash/vendor/bundle/jruby/1.9/build_info/user_agent_parser-2.1.2.info
+logstash/vendor/bundle/jruby/1.9/build_info/user_agent_parser-2.1.5.info
+logstash/vendor/bundle/jruby/1.9/build_info/uuidtools-2.1.4.info
+logstash/vendor/bundle/jruby/1.9/build_info/xml-simple-1.1.3.info
+logstash/vendor/bundle/jruby/1.9/build_info/xmpp4r-0.5.info
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/CHANGELOG.md
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/MIT-LICENSE
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/README.rdoc
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/all.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/backtrace_cleaner.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/base64.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/basic_object.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/benchmarkable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/buffered_logger.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/builder.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache/file_store.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache/mem_cache_store.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache/memory_store.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache/null_store.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/cache/strategy/local_cache.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/callbacks.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/concern.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/configurable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/access.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/extract_options.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/grouping.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/prepend_and_append.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/random_access.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/uniq_by.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/array/wrap.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/benchmark.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/big_decimal.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/big_decimal/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/class.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/class/attribute.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/class/attribute_accessors.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/class/delegating_attributes.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/class/subclasses.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date/acts_like.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date/calculations.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date/freeze.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date/zones.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date_time/acts_like.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date_time/calculations.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date_time/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/date_time/zones.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/enumerable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/exception.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/file.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/file/atomic.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/file/path.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/float.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/float/rounding.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/deep_dup.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/deep_merge.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/diff.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/except.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/indifferent_access.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/keys.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/reverse_merge.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/hash/slice.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/integer.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/integer/inflections.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/integer/multiple.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/integer/time.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/io.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/kernel.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/kernel/agnostics.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/kernel/debugger.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/kernel/reporting.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/kernel/singleton_class.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/load_error.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/logger.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/aliasing.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/anonymous.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/attr_internal.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/attribute_accessors.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/delegation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/deprecation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/introspection.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/method_names.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/qualified_const.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/reachable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/remove_method.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/module/synchronization.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/name_error.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/numeric.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/numeric/bytes.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/numeric/time.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/acts_like.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/blank.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/duplicable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/inclusion.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/instance_variables.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/to_json.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/to_param.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/to_query.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/try.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/object/with_options.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/proc.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/process.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/process/daemon.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range/blockless_step.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range/cover.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range/include_range.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/range/overlaps.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/regexp.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/rexml.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/access.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/behavior.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/encoding.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/exclude.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/filters.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/inflections.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/inquiry.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/interpolation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/multibyte.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/output_safety.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/starts_ends_with.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/strip.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/string/xchar.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/acts_like.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/calculations.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/conversions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/marshal.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/publicize_conversion_methods.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/time/zones.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/core_ext/uri.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/dependencies.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/dependencies/autoload.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/deprecation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/deprecation/behaviors.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/deprecation/method_wrappers.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/deprecation/proxy_wrappers.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/deprecation/reporting.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/descendants_tracker.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/duration.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/file_update_checker.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/file_watcher.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/gzip.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/hash_with_indifferent_access.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/i18n.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/i18n_railtie.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/inflections.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/inflector.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/inflector/inflections.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/inflector/methods.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/inflector/transliterate.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/json.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/json/decoding.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/json/encoding.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/json/variable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/lazy_load_hooks.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/locale/en.yml
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/log_subscriber.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/log_subscriber/test_helper.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/memoizable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/message_encryptor.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/message_verifier.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/multibyte.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/multibyte/chars.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/multibyte/exceptions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/multibyte/unicode.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/multibyte/utils.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/notifications.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/notifications/fanout.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/notifications/instrumenter.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/option_merger.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/ordered_hash.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/ordered_options.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/railtie.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/rescuable.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/ruby/shim.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/string_inquirer.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/tagged_logging.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/test_case.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/assertions.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/declarative.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/deprecation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/isolation.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/mochaing.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/pending.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance/jruby.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance/rubinius.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance/ruby.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance/ruby/mri.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/performance/ruby/yarv.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/testing/setup_and_teardown.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/time.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/time/autoload.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/time_with_zone.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/values/time_zone.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/values/unicode_tables.dat
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/version.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/whiny_nil.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/jdom.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/libxml.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/libxmlsax.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/nokogiri.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/nokogirisax.rb
+logstash/vendor/bundle/jruby/1.9/gems/activesupport-3.2.17/lib/active_support/xml_mini/rexml.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/CHANGELOG.md
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/Gemfile
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/LICENSE.txt
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/README.md
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/Rakefile
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/data/unicode.data
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/idna.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/idna/native.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/idna/pure.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/template.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/uri.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/lib/addressable/version.rb
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/clobber.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/gem.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/git.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/metrics.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/rspec.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/rubyforge.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/tasks/yard.rake
+logstash/vendor/bundle/jruby/1.9/gems/addressable-2.3.5/website/index.html
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/.gitignore
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/.travis.yml
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/Gemfile
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/LICENSE
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/README.md
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/Rakefile
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/atomic.gemspec
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/examples/atomic_example.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/examples/bench_atomic.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/examples/bench_atomic_1.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/examples/graph_atomic_bench.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/ext/AtomicReferenceService.java
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/ext/atomic_reference.c
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/ext/extconf.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/ext/org/jruby/ext/atomic/AtomicReferenceLibrary.java
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/concurrent_update_error.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/delegated_update.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/direct_update.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/fallback.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/jruby.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/numeric_cas_wrapper.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/rbx.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic/ruby.rb
+logstash/vendor/bundle/jruby/1.9/gems/atomic-1.1.15-java/lib/atomic_reference.jar
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/README
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/bench/bench.rb
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/bench/bench_element_size.rb
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/bench/profile.rb
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/lib/avl_tree.rb
+logstash/vendor/bundle/jruby/1.9/gems/avl_tree-1.1.3/lib/red_black_tree.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/.gitignore
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/CHANGELOG
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/Gemfile
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/Gemfile.lock
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/LICENSE
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/README.md
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/Rakefile
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/ap.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/array.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/class.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/kernel.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/logger.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/method.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/object.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/core_ext/string.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/action_view.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/active_record.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/active_support.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/mongo_mapper.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/mongoid.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/no_brainer.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/nokogiri.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/ripple.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/ext/sequel.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/formatter.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/inspector.rb
+logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.2.0/lib/awesome_print/version.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/.yardopts
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/LICENSE.txt
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/README.md
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/bin/aws-rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/ca-bundle.crt
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/endpoints.json
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws-sdk.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/AutoScaling-2011-01-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFormation-2010-05-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFront-2013-05-12.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFront-2013-08-26.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFront-2013-09-27.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFront-2013-11-11.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudFront-2013-11-22.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudSearch-2011-02-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudTrail-2013-11-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/CloudWatch-2010-08-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/DataPipeline-2012-10-29.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/DirectConnect-2012-10-25.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/DynamoDB-2011-12-05.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/DynamoDB-2012-08-10.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/EC2-2013-08-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/EC2-2013-10-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/EC2-2013-10-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/ELB-2012-06-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/EMR-2009-03-31.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/ElastiCache-2013-06-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Glacier-2012-06-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/IAM-2010-05-08.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/ImportExport-2010-06-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Kinesis-2013-12-02.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/OpsWorks-2013-02-18.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/RDS-2013-05-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/RDS-2013-09-09.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Redshift-2012-12-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Route53-2012-12-12.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Route53-2013-04-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/SNS-2010-03-31.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/SQS-2012-11-05.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/STS-2011-06-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/SimpleDB-2009-04-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/SimpleEmailService-2010-12-01.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/StorageGateway-2012-06-30.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/StorageGateway-2013-06-30.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/api_config/Support-2013-04-15.yml
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/activity.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/activity_collection.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/client.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/config.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/errors.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/group.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/group_collection.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/group_options.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/instance.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/instance_collection.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/launch_configuration.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/launch_configuration_collection.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/notification_configuration.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/notification_configuration_collection.rb
+logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-1.35.0/lib/aws/auto_scaling/scaling_policy.rb

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410271001.s9RA1fk6000854>