Add rubygem-logger 1.4.2

Logger is a simple but powerful logging utility to output messages in your Ruby
program.

Logger has the following features:
- Print messages to different levels such as info and error
- Auto-rolling of log files
- Setting the format of log messages
- Specifying a program name in conjunction with the message

WWW: https://github.com/ruby/logger
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-12-29 12:46:53 +00:00
parent a019a5dc99
commit 856656f956
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=521290
4 changed files with 33 additions and 0 deletions

View File

@ -5985,6 +5985,7 @@
SUBDIR += rubygem-local_time-rails5
SUBDIR += rubygem-locale
SUBDIR += rubygem-lockfile
SUBDIR += rubygem-logger
SUBDIR += rubygem-logging
SUBDIR += rubygem-logster
SUBDIR += rubygem-loquacious

View File

@ -0,0 +1,19 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= logger
PORTVERSION= 1.4.2
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Simple logging utility for outputting messages
LICENSE= BSD2CLAUSE
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1577556181
SHA256 (rubygem/logger-1.4.2.gem) = cdeda1d4afd00c78eae49731fbfdf22f041d74e3486115a8eb50c8be2d831890
SIZE (rubygem/logger-1.4.2.gem) = 12800

View File

@ -0,0 +1,10 @@
Logger is a simple but powerful logging utility to output messages in your Ruby
program.
Logger has the following features:
- Print messages to different levels such as info and error
- Auto-rolling of log files
- Setting the format of log messages
- Specifying a program name in conjunction with the message
WWW: https://github.com/ruby/logger