75 lines
2.7 KiB
Ruby
75 lines
2.7 KiB
Ruby
class Tmuxinator < Formula
|
|
desc "Manage complex tmux sessions easily"
|
|
homepage "https://github.com/tmuxinator/tmuxinator"
|
|
url "https://github.com/tmuxinator/tmuxinator/archive/v1.1.2.tar.gz"
|
|
sha256 "455e0b92f6b54d9ed8a132eb624c004ffa6fd219d1d0f710af90d3068e10ce07"
|
|
head "https://github.com/tmuxinator/tmuxinator.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "2d07c2e730941a0250ab3ecab73225d81a3fce27bcb31c92b22998fdb6443b76" => :catalina
|
|
sha256 "17e16770c9ae8c9f284f7574091c5ed6470fc84b16ef8257cd4a2eb2473610f0" => :mojave
|
|
sha256 "439c8f31e061cd4c321a270b575679ededb5fda8cbb28e23ceb24464d21894d5" => :high_sierra
|
|
end
|
|
|
|
depends_on "ruby"
|
|
depends_on "tmux"
|
|
|
|
resource "erubis" do
|
|
url "https://rubygems.org/downloads/erubis-2.7.0.gem"
|
|
sha256 "63653f5174a7997f6f1d6f465fbe1494dcc4bdab1fb8e635f6216989fb1148ba"
|
|
end
|
|
|
|
resource "thor" do
|
|
url "https://rubygems.org/downloads/thor-0.20.3.gem"
|
|
sha256 "49bc217fe28f6af34c6e60b003e3405c27595a55689077d82e9e61d4d3b519fa"
|
|
end
|
|
|
|
resource "xdg" do
|
|
url "https://rubygems.org/downloads/xdg-2.2.5.gem"
|
|
sha256 "f3a5f799363852695e457bb7379ac6c4e3e8cb3a51ce6b449ab47fbb1523b913"
|
|
end
|
|
|
|
def install
|
|
ENV["GEM_HOME"] = libexec
|
|
resources.each do |r|
|
|
r.fetch
|
|
system "gem", "install", r.cached_download, "--ignore-dependencies",
|
|
"--no-document", "--install-dir", libexec
|
|
end
|
|
|
|
system "gem", "build", "tmuxinator.gemspec"
|
|
system "gem", "install", "--ignore-dependencies", "tmuxinator-#{version}.gem"
|
|
bin.install libexec/"bin/tmuxinator"
|
|
bin.env_script_all_files(libexec/"bin", :GEM_HOME => ENV["GEM_HOME"])
|
|
|
|
bash_completion.install "completion/tmuxinator.bash" => "tmuxinator"
|
|
zsh_completion.install "completion/tmuxinator.zsh" => "_tmuxinator"
|
|
fish_completion.install Dir["completion/*.fish"]
|
|
end
|
|
|
|
test do
|
|
version_output = shell_output("#{bin}/tmuxinator version")
|
|
assert_match "tmuxinator #{version}", version_output
|
|
|
|
completion = shell_output("source #{bash_completion}/tmuxinator && complete -p tmuxinator")
|
|
assert_match "-F _tmuxinator", completion
|
|
|
|
commands = shell_output("#{bin}/tmuxinator commands")
|
|
commands_list = %w[
|
|
commands completions new edit open start
|
|
stop local debug copy delete implode
|
|
version doctor list
|
|
]
|
|
|
|
expected_commands = commands_list.join("\n")
|
|
assert_match expected_commands, commands
|
|
|
|
list_output = shell_output("#{bin}/tmuxinator list")
|
|
assert_match "tmuxinator projects:", list_output
|
|
|
|
system "#{bin}/tmuxinator", "new", "test"
|
|
list_output = shell_output("#{bin}/tmuxinator list")
|
|
assert_equal "tmuxinator projects:\ntest\n", list_output
|
|
end
|
|
end
|