diff options
| author | Mike McQuaid | 2013-12-14 18:13:11 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2013-12-14 18:18:35 +0000 |
| commit | 3c86d2b8ffdcb854c88553c86b7911dfbb9766db (patch) | |
| tree | 34579ec2c40222d1f235843e9f6de49d5f9ecb66 /Library/Homebrew | |
| parent | 71cba833abc3491edb4fcee5fa1a4c81fe7c6a49 (diff) | |
| download | homebrew-3c86d2b8ffdcb854c88553c86b7911dfbb9766db.tar.bz2 | |
Update docs, comment mxcl/homebrew refs.
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/cmd/create.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/doctor.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/os/mac.rb | 6 | ||||
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 4 | ||||
| -rw-r--r-- | Library/Homebrew/requirements/python_dependency.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/utils.rb | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/Library/Homebrew/cmd/create.rb b/Library/Homebrew/cmd/create.rb index 06d45555d..daca31e8e 100644 --- a/Library/Homebrew/cmd/create.rb +++ b/Library/Homebrew/cmd/create.rb @@ -117,7 +117,7 @@ class FormulaCreator def template; <<-EOS.undent require 'formula' - # Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook + # Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook # #{HOMEBREW_CONTRIB}/example-formula.rb # PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index cd0f23a79..62c028f67 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -56,7 +56,7 @@ class Checks ############# END HELPERS # Sorry for the lack of an indent here, the diff would have been unreadable. -# See https://github.com/mxcl/homebrew/pull/9986 +# See https://github.com/Homebrew/homebrew/pull/9986 def check_path_for_trailing_slashes bad_paths = ENV['PATH'].split(File::PATH_SEPARATOR).select { |p| p[-1..-1] == '/' } return if bad_paths.empty? diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 5643064af..460b4bb47 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -343,7 +343,7 @@ class Formula # Install python bindings inside of a block given to this method and/or # call python so: `system python, "setup.py", "install", "--prefix=#{prefix}" # Note that there are no quotation marks around python! - # <https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python> + # <https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python> def python(options={:allowed_major_versions => [2, 3]}, &block) require 'python_helper' python_helper(options, &block) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 316c7f68c..570bfefeb 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -180,9 +180,9 @@ module OS end # See these issues for some history: - # http://github.com/mxcl/homebrew/issues/#issue/13 - # http://github.com/mxcl/homebrew/issues/#issue/41 - # http://github.com/mxcl/homebrew/issues/#issue/48 + # http://github.com/Homebrew/homebrew/issues/13 + # http://github.com/Homebrew/homebrew/issues/41 + # http://github.com/Homebrew/homebrew/issues/48 def macports_or_fink paths = [] diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index ae01d8878..80f93ab8f 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -108,7 +108,7 @@ module OS rescue # For people who's xcode-select is unset, or who have installed # xcode-gcc-installer or whatever other combinations we can try and - # supprt. See https://github.com/mxcl/homebrew/wiki/Xcode + # supprt. See https://github.com/Homebrew/homebrew/wiki/Xcode case MacOS.llvm_build_version.to_i when 1..2063 then "3.1.0" when 2064..2065 then "3.1.4" @@ -121,7 +121,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/mxcl/homebrew/wiki/Xcode + # https://github.com/Homebrew/homebrew/wiki/Xcode "4.0" else case (MacOS.clang_version.to_f * 10).to_i diff --git a/Library/Homebrew/requirements/python_dependency.rb b/Library/Homebrew/requirements/python_dependency.rb index 4ce9cd96f..0b9fa8bad 100644 --- a/Library/Homebrew/requirements/python_dependency.rb +++ b/Library/Homebrew/requirements/python_dependency.rb @@ -295,7 +295,7 @@ class PythonDependency < Requirement <<-EOF.undent # This file is created by Homebrew and is executed on each python startup. # Don't print from here, or else python command line scripts may fail! - # <https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python> + # <https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python> import os import sys diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 87b91d6b9..75ce62e22 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -137,7 +137,7 @@ def curl *args raise "#{curl} is not executable" unless curl.exist? and curl.executable? args = [HOMEBREW_CURL_ARGS, HOMEBREW_USER_AGENT, *args] - # See https://github.com/mxcl/homebrew/issues/6103 + # See https://github.com/Homebrew/homebrew/issues/6103 args << "--insecure" if MacOS.version < "10.6" args << "--verbose" if ENV['HOMEBREW_CURL_VERBOSE'] args << "--silent" unless $stdout.tty? |
