aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-07-01 23:16:38 +0100
committerMike McQuaid2013-07-01 23:16:38 +0100
commit9cff299789ccdc59555cd8513d75b3c378f18073 (patch)
tree89b2c59527e9cf41307a83d52f9bdf1536cd6669 /Library/Homebrew/requirements.rb
parent1521ea9cf1a7de3fabe339d8aa1ac7a27ac80b2e (diff)
downloadhomebrew-9cff299789ccdc59555cd8513d75b3c378f18073.tar.bz2
Remove message from default_formula'd requirements
Diffstat (limited to 'Library/Homebrew/requirements.rb')
-rw-r--r--Library/Homebrew/requirements.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb
index cfec02200..5ffa660ab 100644
--- a/Library/Homebrew/requirements.rb
+++ b/Library/Homebrew/requirements.rb
@@ -24,21 +24,6 @@ class MysqlDependency < Requirement
default_formula 'mysql'
satisfy { which 'mysql_config' }
-
- def message; <<-EOS.undent
- MySQL is required to install.
-
- You can install this with Homebrew using:
- brew install mysql-connector-c
- For MySQL client libraries only.
-
- brew install mysql
- For MySQL server.
-
- Or you can use an official installer from:
- http://dev.mysql.com/downloads/mysql/
- EOS
- end
end
class PostgresqlDependency < Requirement
@@ -46,18 +31,6 @@ class PostgresqlDependency < Requirement
default_formula 'postgresql'
satisfy { which 'pg_config' }
-
- def message
- <<-EOS.undent
- Postgres is required to install.
-
- You can install this with Homebrew using:
- brew install postgres
-
- Or you can use an official installer from:
- http://www.postgresql.org/download/macosx/
- EOS
- end
end
class TeXDependency < Requirement
@@ -117,12 +90,4 @@ class MercurialDependency < Requirement
default_formula 'mercurial'
satisfy { which('hg') }
-
- def message; <<-EOS.undent
- Mercurial is needed to install this software.
-
- You can install this with Homebrew using:
- brew install mercurial
- EOS
- end
end