remove blacklisting of Clojure to allow adding a Clojure formula

This commit is contained in:
puredanger 2017-08-22 12:17:11 -05:00
parent 85fd43d4fe
commit 9bc706f1fc
2 changed files with 0 additions and 15 deletions

View File

@ -55,15 +55,6 @@ module Homebrew
when "gsutil" then <<-EOS.undent when "gsutil" then <<-EOS.undent
Install gsutil with `pip install gsutil` Install gsutil with `pip install gsutil`
EOS EOS
when "clojure" then <<-EOS.undent
Clojure isn't really a program but a library managed as part of a
project and Leiningen is the user interface to that library.
To install Clojure you should install Leiningen:
brew install leiningen
and then follow the tutorial:
#{Formatter.url("https://github.com/technomancy/leiningen/blob/stable/doc/TUTORIAL.md")}
EOS
when "gfortran" then <<-EOS.undent when "gfortran" then <<-EOS.undent
GNU Fortran is now provided as part of GCC, and can be installed with: GNU Fortran is now provided as part of GCC, and can be installed with:
brew install gcc brew install gcc

View File

@ -82,12 +82,6 @@ describe Homebrew::MissingFormula do
it { is_expected.to be_blacklisted } it { is_expected.to be_blacklisted }
end end
context "clojure" do
subject { "clojure" }
it { is_expected.to be_blacklisted }
end
context "gfortran" do context "gfortran" do
subject { "gfortran" } subject { "gfortran" }