Merge pull request #35449 from aaronschif/fix/homesick-update

homesick: 1.1.3 -> 1.1.6
This commit is contained in:
adisbladis 2018-02-24 15:19:35 +08:00 committed by GitHub
commit 333d0f8859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 13 deletions

View File

@ -1,9 +1,9 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
homesick (1.1.3) homesick (1.1.6)
thor (>= 0.14.0) thor (>= 0.14.0)
thor (0.19.1) thor (0.20.0)
PLATFORMS PLATFORMS
ruby ruby
@ -12,4 +12,4 @@ DEPENDENCIES
homesick homesick
BUNDLED WITH BUNDLED WITH
1.10.6 1.14.6

View File

@ -1,6 +1,6 @@
{ lib, bundlerEnv, git}: { lib, bundlerEnv, git}:
bundlerEnv { bundlerEnv {
name = "homesick-1.1.3"; name = "homesick-1.1.6";
gemdir = ./.; gemdir = ./.;

View File

@ -1,16 +1,19 @@
{ {
homesick = { homesick = {
version = "1.1.3"; dependencies = ["thor"];
source = { source = {
type = "gem"; remotes = ["https://rubygems.org"];
sha256 = "1pqsnbykisc6qamkz1gcbgis4az95sggxfdkq9v5hjr1a46q0s91"; sha256 = "0lxvnp4ncbx0irlblfxbd1f8h4hl11hgmyiy35q79w137r3prxml";
type = "gem";
}; };
version = "1.1.6";
}; };
thor = { thor = {
version = "0.19.1"; source = {
source = { remotes = ["https://rubygems.org"];
type = "gem"; sha256 = "0nmqpyj642sk4g16nkbq6pj856adpv91lp4krwhqkh2iw63aszdl";
sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; type = "gem";
}; };
version = "0.20.0";
}; };
} }