diff options
author | tz <tz@FreeBSD.org> | 2017-08-18 17:23:45 +0800 |
---|---|---|
committer | tz <tz@FreeBSD.org> | 2017-08-18 17:23:45 +0800 |
commit | d06d0c269d79ab7b811c372c51ec761f13022f23 (patch) | |
tree | 630c660a66da145a807f7dc571fe7800fe7a682c | |
parent | def6e16add7ef4dba88bb24563747cd3c10e4062 (diff) | |
download | freebsd-ports-gnome-d06d0c269d79ab7b811c372c51ec761f13022f23.tar.gz freebsd-ports-gnome-d06d0c269d79ab7b811c372c51ec761f13022f23.tar.zst freebsd-ports-gnome-d06d0c269d79ab7b811c372c51ec761f13022f23.zip |
New port: devel/rubygem-peek-host
Take a peek into the host which serves your reuest.
Things this peek view provides:
- Hostname of the instance which served your request.
Its an addition to the Peek profiling tool.
WWW: https://github.com/jacobbednarz/peek-host
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-peek-host/Makefile | 20 | ||||
-rw-r--r-- | devel/rubygem-peek-host/distinfo | 3 | ||||
-rw-r--r-- | devel/rubygem-peek-host/pkg-descr | 8 |
4 files changed, 32 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 439ea9ddcb8d..f33655f96d67 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5591,6 +5591,7 @@ SUBDIR += rubygem-pathutil SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc + SUBDIR += rubygem-peek-host SUBDIR += rubygem-piston SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform diff --git a/devel/rubygem-peek-host/Makefile b/devel/rubygem-peek-host/Makefile new file mode 100644 index 000000000000..def839567878 --- /dev/null +++ b/devel/rubygem-peek-host/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= peek-host +PORTVERSION= 1.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= tz@FreeBSD.org +COMMENT= Take a peek into the host which served your Rails request + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-peek>=0:devel/rubygem-peek + +NO_ARCH= yes +USES= gem +USE_RUBY= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-peek-host/distinfo b/devel/rubygem-peek-host/distinfo new file mode 100644 index 000000000000..9b557fcd6c02 --- /dev/null +++ b/devel/rubygem-peek-host/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1503047977 +SHA256 (rubygem/peek-host-1.0.0.gem) = 0b411e26aeeaf883ea9b366530cfe7d2081fa98eec4755d9b8dcb7d93e042a87 +SIZE (rubygem/peek-host-1.0.0.gem) = 6656 diff --git a/devel/rubygem-peek-host/pkg-descr b/devel/rubygem-peek-host/pkg-descr new file mode 100644 index 000000000000..704755ba3110 --- /dev/null +++ b/devel/rubygem-peek-host/pkg-descr @@ -0,0 +1,8 @@ +Take a peek into the host which serves your reuest. + +Things this peek view provides: +- Hostname of the instance which served your request. + +Its an addition to the Peek profiling tool. + +WWW: https://github.com/jacobbednarz/peek-host |