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