diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/README.md | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cask/LICENSE | 23 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/analytics.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/help.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/info.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/tap-info.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/update-report.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/dev-cmd/create.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/formula.rb | 8 | ||||
| -rw-r--r-- | Library/Homebrew/manpages/brew.1.md.erb | 4 | ||||
| -rw-r--r-- | Library/Homebrew/os.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/utils/analytics.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/utils/analytics.sh | 2 | 
13 files changed, 16 insertions, 39 deletions
diff --git a/Library/Homebrew/README.md b/Library/Homebrew/README.md index b8bf5fd99..18a41e363 100644 --- a/Library/Homebrew/README.md +++ b/Library/Homebrew/README.md @@ -3,6 +3,6 @@ This is the (partially) documented public API for Homebrew.  The main class you should look at is the {Formula} class (and classes linked from there). That's the class that's used to create Homebrew formulae (i.e. package descriptions). Assume anything else you stumble upon is private. -You may also find the [Formula Cookbook](https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md) and [Ruby Style Guide](https://github.com/styleguide/ruby) helpful in creating formulae. +You may also find the [Formula Cookbook](http://docs.brew.sh/Formula-Cookbook.html) and [Ruby Style Guide](https://github.com/styleguide/ruby) helpful in creating formulae.  Good luck! diff --git a/Library/Homebrew/cask/LICENSE b/Library/Homebrew/cask/LICENSE deleted file mode 100644 index 62542ae57..000000000 --- a/Library/Homebrew/cask/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -Copyright © 2013-2016, Paul Hinze & Contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this -  list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this -  list of conditions and the following disclaimer in the documentation and/or -  other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Library/Homebrew/cmd/analytics.rb b/Library/Homebrew/cmd/analytics.rb index 2efa5a2d2..8a67a54a4 100644 --- a/Library/Homebrew/cmd/analytics.rb +++ b/Library/Homebrew/cmd/analytics.rb @@ -1,6 +1,6 @@  #:  * `analytics` [`state`]:  #:    Display anonymous user behaviour analytics state. -#:    Read more at <https://git.io/brew-analytics>. +#:    Read more at <http://docs.brew.sh/Analytics.html>.  #:  #:  * `analytics` (`on`|`off`):  #:    Turn on/off Homebrew's analytics. diff --git a/Library/Homebrew/cmd/help.rb b/Library/Homebrew/cmd/help.rb index 982e24965..1378e7b1f 100644 --- a/Library/Homebrew/cmd/help.rb +++ b/Library/Homebrew/cmd/help.rb @@ -16,7 +16,7 @@ Troubleshooting:  Developers:    brew create [URL [--no-fetch]]    brew edit [FORMULA...] -  https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md +  http://docs.brew.sh/Formula-Cookbook.html  Further help:    man brew diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index fc47e1731..1850ae003 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -14,7 +14,7 @@  #:    information on all installed formulae.  #:  #:    See the docs for examples of using the JSON: -#:    <https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md> +#:    <http://docs.brew.sh/Querying-Brew.html>  require "blacklist"  require "caveats" diff --git a/Library/Homebrew/cmd/tap-info.rb b/Library/Homebrew/cmd/tap-info.rb index 0d9f8db3d..b46de30c1 100644 --- a/Library/Homebrew/cmd/tap-info.rb +++ b/Library/Homebrew/cmd/tap-info.rb @@ -13,7 +13,7 @@  #:    Pass `--installed` to get information on installed taps.  #:  #:    See the docs for examples of using the JSON: -#:    <https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md> +#:    <http://docs.brew.sh/Querying-Brew.html>  require "tap" diff --git a/Library/Homebrew/cmd/update-report.rb b/Library/Homebrew/cmd/update-report.rb index 786570196..dcf2891d9 100644 --- a/Library/Homebrew/cmd/update-report.rb +++ b/Library/Homebrew/cmd/update-report.rb @@ -35,7 +35,7 @@ module Homebrew          ohai "Homebrew has enabled anonymous aggregate user behaviour analytics."          puts <<-EOS.undent            #{Tty.bold}Read the analytics documentation (and how to opt-out) here: -            #{Formatter.url("https://git.io/brew-analytics")}#{Tty.reset} +            #{Formatter.url("http://docs.brew.sh/Analytics.html")}#{Tty.reset}          EOS diff --git a/Library/Homebrew/dev-cmd/create.rb b/Library/Homebrew/dev-cmd/create.rb index da855e382..07dd1b322 100644 --- a/Library/Homebrew/dev-cmd/create.rb +++ b/Library/Homebrew/dev-cmd/create.rb @@ -159,7 +159,7 @@ class FormulaCreator    end    def template; <<-EOS.undent -    # Documentation: https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md +    # Documentation: http://docs.brew.sh/Formula-Cookbook.html      #                http://www.rubydoc.info/github/Homebrew/brew/master/Formula      # PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 85add1b43..e6312ccdb 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -26,7 +26,7 @@ require "migrator"  # @see SharedEnvExtension  # @see FileUtils  # @see Pathname -# @see https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md Formula Cookbook +# @see http://docs.brew.sh/Formula-Cookbook.html Formula Cookbook  # @see https://github.com/styleguide/ruby Ruby Style Guide  #  # <pre>class Wget < Formula @@ -326,13 +326,13 @@ class Formula      active_spec.bottle_disable_reason    end -  # Does the currently active {SoftwareSpec} has any bottle? +  # Does the currently active {SoftwareSpec} have any bottle?    # @private    def bottle_defined?      active_spec.bottle_defined?    end -  # Does the currently active {SoftwareSpec} has an installable bottle? +  # Does the currently active {SoftwareSpec} have an installable bottle?    # @private    def bottled?      active_spec.bottled? @@ -2066,7 +2066,7 @@ class Formula      # and you haven't passed or previously used any options on this formula.      #      # If you maintain your own repository, you can add your own bottle links. -    # https://github.com/Homebrew/brew/blob/master/docs/Bottles.md +    # http://docs.brew.sh/Bottles.html      # You can ignore this block entirely if submitting to Homebrew/Homebrew, It'll be      # handled for you by the Brew Test Bot.      # diff --git a/Library/Homebrew/manpages/brew.1.md.erb b/Library/Homebrew/manpages/brew.1.md.erb index 7412d0a69..2266f3e7a 100644 --- a/Library/Homebrew/manpages/brew.1.md.erb +++ b/Library/Homebrew/manpages/brew.1.md.erb @@ -76,7 +76,7 @@ scripts that reside somewhere in the `PATH`, named `brew-`<cmdname> or  to create your own commands without modifying Homebrew's internals.  Instructions for creating your own commands can be found in the docs: -<https://github.com/Homebrew/brew/blob/master/docs/External-Commands.md> +<http://docs.brew.sh/External-Commands.html>  ## SPECIFYING FORMULAE @@ -197,7 +197,7 @@ can take several different forms:      *Default:* the number of available CPU cores.    * `HOMEBREW_NO_ANALYTICS`: -    If set, Homebrew will not send analytics. See: <https://github.com/Homebrew/brew/blob/master/docs/Analytics.md#analytics> +    If set, Homebrew will not send analytics. See: <http://docs.brew.sh/Analytics.html>    * `HOMEBREW_NO_AUTO_UPDATE`:      If set, Homebrew will not auto-update before running `brew install`, diff --git a/Library/Homebrew/os.rb b/Library/Homebrew/os.rb index f6fe1eb81..dae843407 100644 --- a/Library/Homebrew/os.rb +++ b/Library/Homebrew/os.rb @@ -15,7 +15,7 @@ module OS      require "os/mac"      # Don't tell people to report issues on unsupported versions of macOS.      if !OS::Mac.prerelease? && !OS::Mac.outdated_release? -      ISSUES_URL = "https://git.io/brew-troubleshooting".freeze +      ISSUES_URL = "http://docs.brew.sh/Troubleshooting.html".freeze      end      PATH_OPEN = "/usr/bin/open".freeze      # compatibility diff --git a/Library/Homebrew/utils/analytics.rb b/Library/Homebrew/utils/analytics.rb index cc7ad54d2..7dd54d3f1 100644 --- a/Library/Homebrew/utils/analytics.rb +++ b/Library/Homebrew/utils/analytics.rb @@ -35,7 +35,7 @@ module Utils          end          # Send analytics. Don't send or store any personally identifiable information. -        # https://github.com/Homebrew/brew/blob/master/docs/Analytics.md +        # http://docs.brew.sh/Analytics.html          # https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide          # https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters          if ENV["HOMEBREW_ANALYTICS_DEBUG"] diff --git a/Library/Homebrew/utils/analytics.sh b/Library/Homebrew/utils/analytics.sh index 0f188fe9b..35f91eabc 100644 --- a/Library/Homebrew/utils/analytics.sh +++ b/Library/Homebrew/utils/analytics.sh @@ -107,7 +107,7 @@ report-analytics-screenview-command() {    )    # Send analytics. Don't send or store any personally identifiable information. -  # https://github.com/Homebrew/brew/blob/master/docs/Analytics.md +  # http://docs.brew.sh/Analytics.html    # https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide#screenView    # https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters    if [[ -z "$HOMEBREW_ANALYTICS_DEBUG" ]]  | 
