2018-07-21 01:44:44 +01:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
2017-01-17 09:55:23 +00:00
|
|
|
|
|
|
|
bundlerEnv rec {
|
|
|
|
pname = "rubocop";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatic Ruby code style checking tool";
|
|
|
|
homepage = http://rubocop.readthedocs.io/en/latest/;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ leemachin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|