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