diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/cli/home.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/url.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/dev-cmd/aspell-dictionaries.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/dev-cmd/pull.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/diagnostic.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/extend/os/mac/hardware/cpu.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/keg_relocate.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/manpages/brew-cask.1.md | 4 | ||||
| -rw-r--r-- | Library/Homebrew/test/cask/cli/home_spec.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/test/cask/download_strategy_spec.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/vendor/macho/macho/utils.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/version.rb | 14 | 
12 files changed, 19 insertions, 19 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/home.rb b/Library/Homebrew/cask/lib/hbc/cli/home.rb index 13b721859..4734bfebb 100644 --- a/Library/Homebrew/cask/lib/hbc/cli/home.rb +++ b/Library/Homebrew/cask/lib/hbc/cli/home.rb @@ -4,7 +4,7 @@ module Hbc        def self.run(*cask_tokens)          if cask_tokens.empty?            odebug "Opening project homepage" -          system "/usr/bin/open", "--", "http://caskroom.github.io/" +          system "/usr/bin/open", "--", "https://caskroom.github.io/"          else            cask_tokens.each do |cask_token|              odebug "Opening homepage for Cask #{cask_token}" diff --git a/Library/Homebrew/cask/lib/hbc/url.rb b/Library/Homebrew/cask/lib/hbc/url.rb index dd34119db..07b41fb80 100644 --- a/Library/Homebrew/cask/lib/hbc/url.rb +++ b/Library/Homebrew/cask/lib/hbc/url.rb @@ -2,7 +2,7 @@ require "forwardable"  module Hbc    class URL -    FAKE_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) http://caskroom.github.io".freeze +    FAKE_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) https://caskroom.github.io".freeze      attr_reader :using, :revision, :trust_cert, :uri, :cookies, :referer, :data diff --git a/Library/Homebrew/dev-cmd/aspell-dictionaries.rb b/Library/Homebrew/dev-cmd/aspell-dictionaries.rb index 86ad037ce..955e41b01 100644 --- a/Library/Homebrew/dev-cmd/aspell-dictionaries.rb +++ b/Library/Homebrew/dev-cmd/aspell-dictionaries.rb @@ -10,7 +10,7 @@ module Homebrew    module_function    def aspell_dictionaries -    dict_url    = "http://ftpmirror.gnu.org/aspell/dict" +    dict_url    = "https://ftpmirror.gnu.org/aspell/dict"      dict_mirror = "https://ftp.gnu.org/gnu/aspell/dict"      languages   = {} diff --git a/Library/Homebrew/dev-cmd/pull.rb b/Library/Homebrew/dev-cmd/pull.rb index 1bc87add1..ec89b14b8 100644 --- a/Library/Homebrew/dev-cmd/pull.rb +++ b/Library/Homebrew/dev-cmd/pull.rb @@ -13,7 +13,7 @@  #:  #:      ~ The URL of a commit on GitHub  #: -#:      ~ A "http://bot.brew.sh/job/..." string specifying a testing job ID +#:      ~ A "https://bot.brew.sh/job/..." string specifying a testing job ID  #:  #:    If `--bottle` is passed, handle bottles, pulling the bottle-update  #:    commit and publishing files on Bintray. diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb index 5ac57273a..c8c4b83d2 100644 --- a/Library/Homebrew/diagnostic.rb +++ b/Library/Homebrew/diagnostic.rb @@ -647,7 +647,7 @@ module Homebrew              Setting DYLD_INSERT_LIBRARIES can cause Go builds to fail.              Having this set is common if you use this software: -              #{Formatter.url("http://asepsis.binaryage.com/")} +              #{Formatter.url("https://asepsis.binaryage.com/")}            EOS          end diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index f759895c7..f180995fb 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -102,7 +102,7 @@ module Hardware            # Amazingly, this order (64, then 32) matters. It shouldn't, but it            # does. GCC (some versions? some systems?) can blow up if the other            # order is used. -          # http://superuser.com/questions/740563/gcc-4-8-on-macos-fails-depending-on-arch-order +          # https://superuser.com/questions/740563/gcc-4-8-on-macos-fails-depending-on-arch-order            [arch_64_bit, arch_32_bit].extend ArchitectureListExtension          end        end diff --git a/Library/Homebrew/keg_relocate.rb b/Library/Homebrew/keg_relocate.rb index d17e7f75a..834cda768 100644 --- a/Library/Homebrew/keg_relocate.rb +++ b/Library/Homebrew/keg_relocate.rb @@ -119,7 +119,7 @@ class Keg      # file has known issues with reading files on other locales. Has      # been fixed upstream for some time, but a sufficiently new enough      # file with that fix is only available in macOS Sierra. -    # http://bugs.gw.com/view.php?id=292 +    # https://bugs.gw.com/view.php?id=292      with_custom_locale("C") do        files = Set.new path.find.reject { |pn|          next true if pn.symlink? diff --git a/Library/Homebrew/manpages/brew-cask.1.md b/Library/Homebrew/manpages/brew-cask.1.md index 5ca863815..56781bd76 100644 --- a/Library/Homebrew/manpages/brew-cask.1.md +++ b/Library/Homebrew/manpages/brew-cask.1.md @@ -64,7 +64,7 @@ names, and other aspects of this manual are still subject to change.    * `home` or `homepage` [ <token> ... ]:      Display the homepage associated with a given Cask in a browser. -    With no arguments, display the project page <http://caskroom.github.io>. +    With no arguments, display the project page <https://caskroom.github.io/>.    * `info` or `abv` <token> [ <token> ... ]:      Display information about the given Cask. @@ -248,7 +248,7 @@ Environment variables specific to Homebrew-Cask:  ## SEE ALSO -The Homebrew-Cask home page: <http://caskroom.github.io> +The Homebrew-Cask home page: <https://caskroom.github.io/>  The Homebrew-Cask GitHub page: <https://github.com/caskroom/homebrew-cask> diff --git a/Library/Homebrew/test/cask/cli/home_spec.rb b/Library/Homebrew/test/cask/cli/home_spec.rb index 5208b3390..7be26dd4c 100644 --- a/Library/Homebrew/test/cask/cli/home_spec.rb +++ b/Library/Homebrew/test/cask/cli/home_spec.rb @@ -40,7 +40,7 @@ describe Hbc::CLI::Home, :cask do    it "opens the project page when no Cask is specified" do      Hbc::CLI::Home.run      expect(Hbc::CLI::Home.system_commands).to eq [ -      ["/usr/bin/open", "--", "http://caskroom.github.io/"], +      ["/usr/bin/open", "--", "https://caskroom.github.io/"],      ]    end  end diff --git a/Library/Homebrew/test/cask/download_strategy_spec.rb b/Library/Homebrew/test/cask/download_strategy_spec.rb index 0d92b74ec..416a830ea 100644 --- a/Library/Homebrew/test/cask/download_strategy_spec.rb +++ b/Library/Homebrew/test/cask/download_strategy_spec.rb @@ -60,7 +60,7 @@ describe "download strategies", :cask do            downloader.fetch          end -        expect(curl_args.each_cons(2)).to include(["-A", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) http://caskroom.github.io"]) +        expect(curl_args.each_cons(2)).to include(["-A", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) https://caskroom.github.io"])        end      end diff --git a/Library/Homebrew/vendor/macho/macho/utils.rb b/Library/Homebrew/vendor/macho/macho/utils.rb index deb4c9c66..cedd0bc1c 100644 --- a/Library/Homebrew/vendor/macho/macho/utils.rb +++ b/Library/Homebrew/vendor/macho/macho/utils.rb @@ -5,7 +5,7 @@ module MachO      # @param value [Fixnum] the number being rounded      # @param round [Fixnum] the number being rounded with      # @return [Fixnum] the rounded value -    # @see http://www.opensource.apple.com/source/cctools/cctools-870/libstuff/rnd.c +    # @see https://www.opensource.apple.com/source/cctools/cctools-870/libstuff/rnd.c      def self.round(value, round)        round -= 1        value += round diff --git a/Library/Homebrew/version.rb b/Library/Homebrew/version.rb index 77f270dd9..b9f512a50 100644 --- a/Library/Homebrew/version.rb +++ b/Library/Homebrew/version.rb @@ -360,8 +360,8 @@ class Version      m = /-((?:\d+\.)*\d+-(?:alpha|beta|rc)\d*)$/.match(stem)      return m.captures.first unless m.nil? -    # e.g. http://ftpmirror.gnu.org/libidn/libidn-1.29-win64.zip -    # e.g. http://ftpmirror.gnu.org/libmicrohttpd/libmicrohttpd-0.9.17-w32.zip +    # e.g. https://ftpmirror.gnu.org/libidn/libidn-1.29-win64.zip +    # e.g. https://ftpmirror.gnu.org/libmicrohttpd/libmicrohttpd-0.9.17-w32.zip      m = /-(\d+\.\d+(?:\.\d+)?)-w(?:in)?(?:32|64)$/.match(stem)      return m.captures.first unless m.nil? @@ -372,11 +372,11 @@ class Version      m = /\.(\d+\.\d+(?:\.\d+)?)\+opam$/.match(stem)      return m.captures.first unless m.nil? -    # e.g. http://ftpmirror.gnu.org/mtools/mtools-4.0.18-1.i686.rpm -    # e.g. http://ftpmirror.gnu.org/autogen/autogen-5.5.7-5.i386.rpm -    # e.g. http://ftpmirror.gnu.org/libtasn1/libtasn1-2.8-x86.zip -    # e.g. http://ftpmirror.gnu.org/libtasn1/libtasn1-2.8-x64.zip -    # e.g. http://ftpmirror.gnu.org/mtools/mtools_4.0.18_i386.deb +    # e.g. https://ftpmirror.gnu.org/mtools/mtools-4.0.18-1.i686.rpm +    # e.g. https://ftpmirror.gnu.org/autogen/autogen-5.5.7-5.i386.rpm +    # e.g. https://ftpmirror.gnu.org/libtasn1/libtasn1-2.8-x86.zip +    # e.g. https://ftpmirror.gnu.org/libtasn1/libtasn1-2.8-x64.zip +    # e.g. https://ftpmirror.gnu.org/mtools/mtools_4.0.18_i386.deb      m = /[-_](\d+\.\d+(?:\.\d+)?(?:-\d+)?)[-_.](?:i[36]86|x86|x64(?:[-_](?:32|64))?)$/.match(stem)      return m.captures.first unless m.nil?  | 
