Merge pull request #282952 from purcell/youplot

youplot: init at 0.4.5
This commit is contained in:
Mario Rodas 2024-02-01 18:16:22 -05:00 committed by GitHub
commit 6846de3bbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'youplot'

View File

@ -0,0 +1,18 @@
GEM
remote: https://rubygems.org/
specs:
enumerable-statistics (2.0.7)
unicode_plot (0.0.5)
enumerable-statistics (>= 2.0.1)
youplot (0.4.5)
unicode_plot (>= 0.0.5)
PLATFORMS
arm64-darwin-22
ruby
DEPENDENCIES
youplot
BUNDLED WITH
2.5.3

View File

@ -0,0 +1,34 @@
{
enumerable-statistics = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0dlnfncz0lbyczakgdlys44pksj6h447npj665xk41b36y0lbf7f";
type = "gem";
};
version = "2.0.7";
};
unicode_plot = {
dependencies = ["enumerable-statistics"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0fzpg1zizf19xgfzqw6lmb38xir423wwxb2mjsb3nym6phvn5kli";
type = "gem";
};
version = "0.0.5";
};
youplot = {
dependencies = ["unicode_plot"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0imy65wjkgdkpqfympbz8lp2ih866538vk55fwz9a909ib9sbdri";
type = "gem";
};
version = "0.4.5";
};
}

View File

@ -0,0 +1,19 @@
{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "youplot";
gemdir = ./.;
exes = [ "uplot" ];
passthru.updateScript = bundlerUpdateScript "youplot";
meta = with lib; {
description = "A command line tool that draws plots on the terminal";
homepage = "https://github.com/red-data-tools/YouPlot";
mainProgram = "uplot";
license = licenses.mit;
maintainers = with maintainers; [ purcell ];
platforms = platforms.unix;
};
}