papertrail: 0.10.1 -> 0.11.2 (#342289)

This commit is contained in:
Peder Bergebakken Sundt
2024-09-20 21:01:40 +02:00
committed by GitHub
3 changed files with 14 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ GEM
specs:
ansi (1.5.0)
chronic (0.10.2)
papertrail (0.10.1)
papertrail (0.11.2)
ansi (~> 1.5)
chronic (~> 0.10)
@@ -14,4 +14,4 @@ DEPENDENCIES
papertrail
BUNDLED WITH
2.1.4
2.5.16

View File

@@ -1,4 +1,4 @@
{ lib, stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
{ lib, stdenv, bundlerEnv, ruby, bundlerUpdateScript, testers, papertrail }:
let
papertrail-env = bundlerEnv {
@@ -21,6 +21,8 @@ in stdenv.mkDerivation {
passthru.updateScript = bundlerUpdateScript "papertrail";
passthru.tests.version = testers.testVersion { package = papertrail; };
meta = with lib; {
description = "Command-line client for Papertrail log management service";
mainProgram = "papertrail";

View File

@@ -1,5 +1,7 @@
{
ansi = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "14ims9zfal4gs2wpx2m5rd8zsrl2k794d359shkrsgg3fhr2a22l";
@@ -8,6 +10,8 @@
version = "1.5.0";
};
chronic = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
@@ -16,11 +20,14 @@
version = "0.10.2";
};
papertrail = {
dependencies = ["ansi" "chronic"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0vb7bh7qh5hr4v3w711bl0yrr3rlhz5c3h3qx3fq31dr5y4100v7";
sha256 = "170zhgahrgpwj4cb9xj8104yqcf9gva8qk5vqpmw3g8rq29jxshy";
type = "gem";
};
version = "0.10.1";
version = "0.11.2";
};
}