Merge pull request #127432 from marsam/update-brakeman

brakeman: 5.0.0 -> 5.0.4
This commit is contained in:
Mario Rodas 2021-06-20 10:24:08 -05:00 committed by GitHub
commit 9023442a70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 7 deletions

View File

@ -0,0 +1,2 @@
source "https://rubygems.org"
gem "brakeman"

View File

@ -0,0 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
brakeman (5.0.4)
PLATFORMS
ruby
DEPENDENCIES
brakeman
BUNDLED WITH
2.1.4

View File

@ -1,11 +1,11 @@
{ lib, ruby, buildRubyGem }:
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "brakeman";
version = "5.0.0";
source.sha256 = "0k1ynqsr9b0vnxqb7d5hbdk4q1i98zjzdnx4y1ylikz4rmkizf91";
bundlerApp rec {
pname = "brakeman";
exes = [ "brakeman" ];
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "brakeman";
meta = with lib; {
description = "Static analysis security scanner for Ruby on Rails";

View File

@ -0,0 +1,12 @@
{
brakeman = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1czqmrqbli2cnw4vv4pzz8bk78c7lpcnnyba74cj632swv1za6jd";
type = "gem";
};
version = "5.0.4";
};
}