On Sun, 5 Aug 2018 15:43:22 +0100 Christopher Baines wrote: > From: Ben Woodcroft > > * gnu/packages/ruby.scm (ruby-multi-test): New variable. > > Signed-off-by: Christopher Baines > --- > gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm > index 888a31e89..e199d2b92 100644 > --- a/gnu/packages/ruby.scm > +++ b/gnu/packages/ruby.scm > @@ -2304,6 +2304,32 @@ NSJSONSerialization, gson.rb, JrJackson, and > OkJson.") (home-page "https://github.com/intridea/multi_json") > (license license:expat))) > > +(define-public ruby-multi-test > + (package > + (name "ruby-multi-test") Do we have name conventions for Ruby? The original name is with underscore: multi_test, here it is written with hyphen: multi-test. Compare: ruby-data_uri is with underscore. It also has this strange reproducibility-problem with diffoscope showing nothing. Otherwise, LGTM. Björn