diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2017-06-24 05:18:28 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2017-06-24 05:18:28 +0800 |
commit | 7568d6fb1d676dd2bbe191cf06b67941e11131c7 (patch) | |
tree | 11f7879d04474a0603347fd3a05bfae981599a6b | |
parent | 374feb8a8d837f1f03ca30dbb7a0d47a043be676 (diff) | |
download | freebsd-ports-gnome-7568d6fb1d676dd2bbe191cf06b67941e11131c7.tar.gz freebsd-ports-gnome-7568d6fb1d676dd2bbe191cf06b67941e11131c7.tar.zst freebsd-ports-gnome-7568d6fb1d676dd2bbe191cf06b67941e11131c7.zip |
Add rubygem-flipper 0.10.2
Feature flipping is the act of enabling or disabling features or parts of your
application, ideally without re-deploying or changing anything in your code
base.
The goal of this gem is to make turning features on or off so easy that everyone
does it. Whatever your data store, throughput, or experience, feature flipping
should be easy and have minimal impact on your application.
WWW: https://github.com/jnunemaker/flipper
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-flipper/Makefile | 19 | ||||
-rw-r--r-- | devel/rubygem-flipper/distinfo | 3 | ||||
-rw-r--r-- | devel/rubygem-flipper/pkg-descr | 9 |
4 files changed, 32 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6055c182445b..f42f7a1f26ce 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5325,6 +5325,7 @@ SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-flexmock + SUBDIR += rubygem-flipper SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core diff --git a/devel/rubygem-flipper/Makefile b/devel/rubygem-flipper/Makefile new file mode 100644 index 000000000000..918e07582c3a --- /dev/null +++ b/devel/rubygem-flipper/Makefile @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= flipper +PORTVERSION= 0.10.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Act of enabling/disabling features in your application + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> diff --git a/devel/rubygem-flipper/distinfo b/devel/rubygem-flipper/distinfo new file mode 100644 index 000000000000..a79616c51384 --- /dev/null +++ b/devel/rubygem-flipper/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1498224657 +SHA256 (rubygem/flipper-0.10.2.gem) = 175932fc945b0185b267a1ee7c36b7ce51735326bc495b07c327cf0c24697bbd +SIZE (rubygem/flipper-0.10.2.gem) = 50688 diff --git a/devel/rubygem-flipper/pkg-descr b/devel/rubygem-flipper/pkg-descr new file mode 100644 index 000000000000..12e7c6d04f43 --- /dev/null +++ b/devel/rubygem-flipper/pkg-descr @@ -0,0 +1,9 @@ +Feature flipping is the act of enabling or disabling features or parts of your +application, ideally without re-deploying or changing anything in your code +base. + +The goal of this gem is to make turning features on or off so easy that everyone +does it. Whatever your data store, throughput, or experience, feature flipping +should be easy and have minimal impact on your application. + +WWW: https://github.com/jnunemaker/flipper |