4075bb9b82
Install historian bash history utility. https://github.com/jcsalterego/historian Closes #12407. Signed-off-by: Tim D. Smith <git@tim-smith.us>
21 lines
559 B
Ruby
21 lines
559 B
Ruby
class Historian < Formula
|
|
desc "Command-line utility for managing shell history in a SQLite database."
|
|
homepage "https://github.com/jcsalterego/historian"
|
|
url "https://github.com/jcsalterego/historian/archive/0.0.2.tar.gz"
|
|
sha256 "691b131290ddf06142a747755412115fec996cb9cc2ad8e8f728118788b3fe05"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "hist"
|
|
end
|
|
|
|
test do
|
|
ENV["HISTORIAN_SRC"] = "test_history"
|
|
(testpath/"test_history").write <<-EOS.undent
|
|
brew update
|
|
brew upgrade
|
|
EOS
|
|
system bin/"hist", "import"
|
|
end
|
|
end
|