homebrew-core/Formula/yadm.rb
Tim Byrne 44398717f8 yadm 2.2.0
Closes #47568.

Signed-off-by: Rui Chen <chenrui333@gmail.com>
2019-12-06 14:46:53 -05:00

33 lines
1.2 KiB
Ruby

class Yadm < Formula
desc "Yet Another Dotfiles Manager"
homepage "https://yadm.io/"
url "https://github.com/TheLocehiliosan/yadm/archive/2.2.0.tar.gz"
sha256 "26c79d490f5bc14195e3144e71052a5927da5c16a0d9c4f4f27d8f561569e381"
bottle :unneeded
def install
system "make", "install", "PREFIX=#{prefix}"
bash_completion.install "completion/yadm.bash_completion"
zsh_completion.install "completion/yadm.zsh_completion" => "_yadm"
end
test do
system bin/"yadm", "init"
assert_predicate testpath/".config/yadm/repo.git/config", :exist?, "Failed to init repository."
assert_match testpath.to_s, shell_output("#{bin}/yadm gitconfig core.worktree")
# disable auto-alt
system bin/"yadm", "config", "yadm.auto-alt", "false"
assert_match "false", shell_output("#{bin}/yadm config yadm.auto-alt")
(testpath/"testfile").write "test"
system bin/"yadm", "add", "#{testpath}/testfile"
system bin/"yadm", "gitconfig", "user.email", "test@test.org"
system bin/"yadm", "gitconfig", "user.name", "Test User"
system bin/"yadm", "commit", "-m", "test commit"
assert_match "test commit", shell_output("#{bin}/yadm log --pretty=oneline 2>&1")
end
end