31 lines
1.5 KiB
Ruby
31 lines
1.5 KiB
Ruby
class Codespell < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Fix common misspellings in source code and text files"
|
|
homepage "https://github.com/codespell-project/codespell"
|
|
url "https://files.pythonhosted.org/packages/26/37/c524f1750635cb8806240013af1fd4147a60019f9a80e788759e3d2fb644/codespell-2.1.0.tar.gz"
|
|
sha256 "19d3fe5644fef3425777e66f225a8c82d39059dcfe9edb3349a8a2cf48383ee5"
|
|
license "GPL-2.0-only"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "d9d367b3e09c1e4df7739bc65740f06efb028f211decf69aa548bfdd4f39b337"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "d9d367b3e09c1e4df7739bc65740f06efb028f211decf69aa548bfdd4f39b337"
|
|
sha256 cellar: :any_skip_relocation, monterey: "3b046193f1b253adfc14e6d8e4a312a45b7625345723a0adb9e638fa8f602c6b"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "3b046193f1b253adfc14e6d8e4a312a45b7625345723a0adb9e638fa8f602c6b"
|
|
sha256 cellar: :any_skip_relocation, catalina: "3b046193f1b253adfc14e6d8e4a312a45b7625345723a0adb9e638fa8f602c6b"
|
|
sha256 cellar: :any_skip_relocation, mojave: "3b046193f1b253adfc14e6d8e4a312a45b7625345723a0adb9e638fa8f602c6b"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "fbd96b41878ac452cb7c3eaae676a52c5f6ac552918f57b1b6e5e675a00eb2d4"
|
|
end
|
|
|
|
depends_on "python@3.10"
|
|
|
|
def install
|
|
virtualenv_install_with_resources
|
|
end
|
|
|
|
test do
|
|
assert_equal "1: teh\n\tteh ==> the\n", pipe_output("#{bin}/codespell -", "teh", 65)
|
|
end
|
|
end
|