Last active
January 8, 2018 22:27
-
-
Save wingrunr21/cf1419dacede357d5adb6a382364694e to your computer and use it in GitHub Desktop.
Revisions
-
wingrunr21 revised this gist
Jan 8, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,7 @@ class Chnode < Formula homepage "https://github.com/steakknife/chnode" url "https://github.com/steakknife/chnode/archive/v1.2.3.tar.gz" sha256 "ae0bd1d9227ef76286d19331f9a3c5fcc1926e70f4ef0d3896a8f9f7b463c792" head "https://github.com/steakknife/chnode.git" def install bin.install "chnode", "chnode-auto", "chnode-exec" -
steakknife created this gist
Dec 11, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ class Chnode < Formula desc "Change between installed Node versions in your current shell." homepage "https://github.com/steakknife/chnode" url "https://github.com/steakknife/chnode/archive/v1.2.3.tar.gz" sha256 "ae0bd1d9227ef76286d19331f9a3c5fcc1926e70f4ef0d3896a8f9f7b463c792" depends_on "node" def install bin.install "chnode", "chnode-auto", "chnode-exec" doc.install "README.md", "LICENSE", "CHANGELOG.md" end test do system "chnode-exec", "system", "--", "node", "-v" end end