rake: 11.1.0 -> 12.0.0

This commit is contained in:
Peter Hoeg 2017-09-07 17:50:26 +08:00
parent 8343a6c7a5
commit 0bac95c976
3 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
rake (11.1.1)
rake (12.0.0)
PLATFORMS
ruby
@ -10,4 +10,4 @@ DEPENDENCIES
rake
BUNDLED WITH
1.10.5
1.14.6

View File

@ -1,7 +1,7 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "rake-11.1.1";
name = "rake-${(import ./gemset.nix).rake.version}";
inherit ruby;
gemdir = ./.;

View File

@ -1,9 +1,10 @@
{
"rake" = {
version = "11.1.1";
rake = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n";
type = "gem";
sha256 = "0h8wcic2xh3lv7yvs05pqnfqb80jyl488f7136lgxmajb0s1rqhg";
};
version = "12.0.0";
};
}