Date: Fri, 25 Oct 2024 11:22:44 GMT From: Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: eecc8e1a9782 - main - devel/rubygem-mize: Update to 0.6.1 Message-ID: <202410251122.49PBMiw0018713@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=eecc8e1a9782c1c06bba17a92774128e20774a5b commit eecc8e1a9782c1c06bba17a92774128e20774a5b Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-10-25 11:18:48 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-10-25 11:18:48 +0000 devel/rubygem-mize: Update to 0.6.1 - Add LICENSE_FILE - Update pkg-descr Changes: https://github.com/flori/mize/blob/master/CHANGES.md --- devel/rubygem-mize/Makefile | 3 ++- devel/rubygem-mize/distinfo | 6 +++--- devel/rubygem-mize/pkg-descr | 12 +++++++++++- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/devel/rubygem-mize/Makefile b/devel/rubygem-mize/Makefile index 0f7f8337a39c..99e79cee3abd 100644 --- a/devel/rubygem-mize/Makefile +++ b/devel/rubygem-mize/Makefile @@ -1,5 +1,5 @@ PORTNAME= mize -PORTVERSION= 0.6.0 +PORTVERSION= 0.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -8,6 +8,7 @@ COMMENT= Memoziation for methods and functions for Ruby WWW= https://github.com/flori/mize LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem diff --git a/devel/rubygem-mize/distinfo b/devel/rubygem-mize/distinfo index c6703e192191..4af9d297964c 100644 --- a/devel/rubygem-mize/distinfo +++ b/devel/rubygem-mize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1722249140 -SHA256 (rubygem/mize-0.6.0.gem) = 3f1a0f52cb5c158e43e93a6dd3be896d9c7dd345d76eb1bd9f26088681db2363 -SIZE (rubygem/mize-0.6.0.gem) = 10752 +TIMESTAMP = 1729653452 +SHA256 (rubygem/mize-0.6.1.gem) = 4031558979ff5426fda24c75a149b4e4c0faf4cacf2fae8938f83866ab94b780 +SIZE (rubygem/mize-0.6.1.gem) = 13312 diff --git a/devel/rubygem-mize/pkg-descr b/devel/rubygem-mize/pkg-descr index d61ee178473d..4527b931e147 100644 --- a/devel/rubygem-mize/pkg-descr +++ b/devel/rubygem-mize/pkg-descr @@ -1 +1,11 @@ -Mize provides memoize methods/functions in Ruby. +Memoization is a powerful technique for improving the performance of +computationally expensive functions or methods by caching and reusing previously +computed results. However, implementing memoization correctly can be tricky, +especially when dealing with complex data structures or scenarios where cache +invalidation is critical. + +The mize library provides a simple and flexible way to memoize methods and +functions in Ruby, making it easier for developers to write high-performance +code without the need for manual caching implementations. In this README.md, +we'll explore how mize can help you optimize your Ruby projects using +memoization techniques.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410251122.49PBMiw0018713>