2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2017-01-17 01:55:23 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
bundlerEnv {
|
2017-01-17 01:55:23 -08:00
|
|
|
pname = "rubocop";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "rubocop";
|
|
|
|
|
2017-01-17 01:55:23 -08:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatic Ruby code style checking tool";
|
2019-05-07 14:20:00 -07:00
|
|
|
homepage = "https://docs.rubocop.org/";
|
2017-01-17 01:55:23 -08:00
|
|
|
license = licenses.mit;
|
2019-07-08 18:14:46 -07:00
|
|
|
maintainers = with maintainers; [ marsam leemachin ];
|
2017-01-17 01:55:23 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|