aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2014-10-26 14:54:36 +0000
committerMike McQuaid2014-10-26 14:57:36 +0000
commit19d12aee45ac8d55ecd58a8c072286c84e72041d (patch)
treef03c854a0c956a51def4853304aab021e60e635c /Library/Homebrew
parentcd528e7203b649795113c7adc013f09a3b1aab73 (diff)
downloadbrew-19d12aee45ac8d55ecd58a8c072286c84e72041d.tar.bz2
Import docs from wiki.
Closes Homebrew/homebrew#33211.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/create.rb2
-rw-r--r--Library/Homebrew/cmd/help.rb2
-rw-r--r--Library/Homebrew/cmd/tap-readme.rb4
-rw-r--r--Library/Homebrew/manpages/brew.1.md10
-rw-r--r--Library/Homebrew/os.rb2
-rw-r--r--Library/Homebrew/os/mac/xcode.rb2
6 files changed, 11 insertions, 11 deletions
diff --git a/Library/Homebrew/cmd/create.rb b/Library/Homebrew/cmd/create.rb
index dcef372d8..9ba3e7204 100644
--- a/Library/Homebrew/cmd/create.rb
+++ b/Library/Homebrew/cmd/create.rb
@@ -119,7 +119,7 @@ class FormulaCreator
def template; <<-EOS.undent
require "formula"
- # Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook
+ # Documentation: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md
# #{HOMEBREW_CONTRIB}/example-formula.rb
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
diff --git a/Library/Homebrew/cmd/help.rb b/Library/Homebrew/cmd/help.rb
index cc1afd061..f4fedc529 100644
--- a/Library/Homebrew/cmd/help.rb
+++ b/Library/Homebrew/cmd/help.rb
@@ -17,7 +17,7 @@ Troubleshooting:
Brewing:
brew create [URL [--no-fetch]]
brew edit [FORMULA...]
- open https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook
+ open https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md
Further help:
man brew
diff --git a/Library/Homebrew/cmd/tap-readme.rb b/Library/Homebrew/cmd/tap-readme.rb
index 6356fe308..a62ec3cc7 100644
--- a/Library/Homebrew/cmd/tap-readme.rb
+++ b/Library/Homebrew/cmd/tap-readme.rb
@@ -22,9 +22,9 @@ module Homebrew
Docs
----
- `brew help`, `man brew`, or the Homebrew [wiki][].
+ `brew help`, `man brew`, or the Homebrew [docs][].
- [wiki]:http://wiki.github.com/Homebrew/homebrew
+ [docs]:https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/README.md#readme
EOS
puts template if ARGV.verbose?
diff --git a/Library/Homebrew/manpages/brew.1.md b/Library/Homebrew/manpages/brew.1.md
index 0699a9f9a..e58fb4693 100644
--- a/Library/Homebrew/manpages/brew.1.md
+++ b/Library/Homebrew/manpages/brew.1.md
@@ -169,8 +169,8 @@ Note that these flags should only appear after a command.
Pass `--all` to get information on all formulae, or `--installed` to get
information on all installed formulae.
- See the wiki for examples of using the JSON:
- <https://github.com/Homebrew/homebrew/wiki/Querying-Brew>
+ See the docs for examples of using the JSON:
+ <https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Querying-Brew.md>
* `install [--debug] [--env=<std|super>] [--ignore-dependencies] [--only-dependencies] [--cc=<compiler>] [--build-from-source] [--devel|--HEAD]` <formula>:
Install <formula>.
@@ -441,8 +441,8 @@ by default:
$ ls $(brew --repository)/Library/Contributions/cmd
Documentation for the included external commands as well as instructions for
-creating your own can be found on the wiki:
-<http://wiki.github.com/Homebrew/homebrew/External-Commands>
+creating your own can be found in the docs:
+<https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/External-Commands.md>
## SPECIFYING FORMULAE
@@ -598,7 +598,7 @@ If your proxy requires authentication:
## SEE ALSO
-Homebrew Wiki: <http://wiki.github.com/Homebrew/homebrew/>
+Homebrew Documentation: <https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/>
`git`(1), `git-log`(1)
diff --git a/Library/Homebrew/os.rb b/Library/Homebrew/os.rb
index 9d9886050..4c4f9ae05 100644
--- a/Library/Homebrew/os.rb
+++ b/Library/Homebrew/os.rb
@@ -8,7 +8,7 @@ module OS
end
if OS.mac?
- ISSUES_URL = "https://github.com/Homebrew/homebrew/wiki/troubleshooting"
+ ISSUES_URL = "https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Troubleshooting.md#troubleshooting"
PATH_OPEN = "/usr/bin/open"
elsif OS.linux?
ISSUES_URL = "https://github.com/Homebrew/linuxbrew/wiki/troubleshooting"
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index 30c141cd6..d5c636942 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -99,7 +99,7 @@ module OS
when 2327..2333 then "3.2.5"
when 2335
# this build number applies to 3.2.6, 4.0 and 4.1
- # https://github.com/Homebrew/homebrew/wiki/Xcode
+ # https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Xcode.md
"4.0"
else
case (MacOS.clang_version.to_f * 10).to_i