Date: Mon, 12 Mar 2018 20:41:12 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464291 - in head/devel: . rubygem-wisper Message-ID: <201803122041.w2CKfCGf007938@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Mar 12 20:41:12 2018 New Revision: 464291 URL: https://svnweb.freebsd.org/changeset/ports/464291 Log: Add rubygem-wisper 2.0.0 Wisper is a micro library providing Ruby objects with Publish-Subscribe capabilities. It supports: - Decouple core business logic from external concerns in Hexagonal style architectures. - Use as an alternative to ActiveRecord callbacks and Observers in Rails apps. - Connect objects based on context without permanence. - Publish events synchronously or asynchronously. WWW: https://github.com/krisleech/wisper Added: head/devel/rubygem-wisper/ head/devel/rubygem-wisper/Makefile (contents, props changed) head/devel/rubygem-wisper/distinfo (contents, props changed) head/devel/rubygem-wisper/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 12 20:40:49 2018 (r464290) +++ head/devel/Makefile Mon Mar 12 20:41:12 2018 (r464291) @@ -5877,6 +5877,7 @@ SUBDIR += rubygem-webpacker-rails50 SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error + SUBDIR += rubygem-wisper SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xdg SUBDIR += rubygem-xpath Added: head/devel/rubygem-wisper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-wisper/Makefile Mon Mar 12 20:41:12 2018 (r464291) @@ -0,0 +1,18 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= wisper +PORTVERSION= 2.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Library for Ruby objects with Publish-Subscribe capabilities + +LICENSE= MIT + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> Added: head/devel/rubygem-wisper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-wisper/distinfo Mon Mar 12 20:41:12 2018 (r464291) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520791345 +SHA256 (rubygem/wisper-2.0.0.gem) = 6d8623c76943612e8db81862af7eb20f5a8ad631fe1857d9f7ced97e87e5222b +SIZE (rubygem/wisper-2.0.0.gem) = 21504 Added: head/devel/rubygem-wisper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-wisper/pkg-descr Mon Mar 12 20:41:12 2018 (r464291) @@ -0,0 +1,11 @@ +Wisper is a micro library providing Ruby objects with Publish-Subscribe +capabilities. + +It supports: +- Decouple core business logic from external concerns in Hexagonal style + architectures. +- Use as an alternative to ActiveRecord callbacks and Observers in Rails apps. +- Connect objects based on context without permanence. +- Publish events synchronously or asynchronously. + +WWW: https://github.com/krisleech/wisper
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803122041.w2CKfCGf007938>