diff options
| author | Joe Block | 2013-10-23 09:12:39 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-29 20:54:57 -0700 |
| commit | 34e8b05559560d8654a53581944addd9f780222b (patch) | |
| tree | 6edd85333d8bce44d2664665fd1c51ae852f8c9b | |
| parent | fbfea39c275afcc378fa20a83ed10790caf9212b (diff) | |
| download | homebrew-34e8b05559560d8654a53581944addd9f780222b.tar.bz2 | |
speedtest_cli 0.2.2
Command line interface for testing internet bandwidth using
speedtest.net.
Closes #23706.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/speedtest_cli.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/speedtest_cli.rb b/Library/Formula/speedtest_cli.rb new file mode 100644 index 000000000..aefcb195b --- /dev/null +++ b/Library/Formula/speedtest_cli.rb @@ -0,0 +1,11 @@ +require 'formula' + +class SpeedtestCli < Formula + homepage 'https://github.com/sivel/speedtest-cli' + url 'https://github.com/sivel/speedtest-cli/archive/v0.2.2.tar.gz' + sha1 '19843804bbc2e62375df63749f13d2d2748ecd07' + + def install + bin.install 'speedtest_cli.py' => 'speedtest_cli' + end +end |
