ruby-changes:51874
From: kazu <ko1@a...>
Date: Sat, 28 Jul 2018 19:00:32 +0900 (JST)
Subject: [ruby-changes:51874] kazu:r64088 (trunk): use https:// instead of http://
kazu 2018-07-28 19:00:27 +0900 (Sat, 28 Jul 2018) New Revision: 64088 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64088 Log: use https:// instead of http:// [ci skip] Modified files: trunk/ext/readline/readline.c trunk/include/ruby/vm.h trunk/test/minitest/test_minitest_unit.rb trunk/tool/make-snapshot trunk/tool/update-deps Index: include/ruby/vm.h =================================================================== --- include/ruby/vm.h (revision 64087) +++ include/ruby/vm.h (revision 64088) @@ -25,7 +25,7 @@ RUBY_SYMBOL_EXPORT_BEGIN https://github.com/ruby/ruby/blob/trunk/include/ruby/vm.h#L25 * * We will prepare VM creation/control APIs on 1.9.2 or later. * If you have an interest about it, please see mvm branch. - * http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/mvm/ + * https://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/mvm/ */ /* VM type declaration */ Index: ext/readline/readline.c =================================================================== --- ext/readline/readline.c (revision 64087) +++ ext/readline/readline.c (revision 64088) @@ -820,7 +820,7 @@ readline_s_redisplay(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/readline/readline.c#L820 * * When working with auto-complete there are some strategies that work well. * To get some ideas you can take a look at the - * completion.rb[http://svn.ruby-lang.org/repos/ruby/trunk/lib/irb/completion.rb] + * completion.rb[https://svn.ruby-lang.org/repos/ruby/trunk/lib/irb/completion.rb] * file for irb. * * The common strategy is to take a list of possible completions and filter it Index: tool/update-deps =================================================================== --- tool/update-deps (revision 64087) +++ tool/update-deps (revision 64088) @@ -42,7 +42,7 @@ REV=48577 https://github.com/ruby/ruby/blob/trunk/tool/update-deps#L42 tar xf ruby-$VER-r$REV.tar.xz cp -a ruby-$VER-r$REV tarball_source_dir_original mv ruby-$VER-r$REV tarball_source_dir_after_build -svn co -q -r$REV http://svn.ruby-lang.org/repos/ruby/trunk ruby +svn co -q -r$REV https://svn.ruby-lang.org/repos/ruby/trunk ruby (cd ruby; autoconf) cp -a ruby repo_source_dir_original mv ruby repo_source_dir_after_build Index: tool/make-snapshot =================================================================== --- tool/make-snapshot (revision 64087) +++ tool/make-snapshot (revision 64088) @@ -69,7 +69,7 @@ if mflags = ENV["GNUMAKEFLAGS"] and /\A- https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L69 ENV["GNUMAKEFLAGS"] = (mflags unless mflags.empty?) end ENV["LC_ALL"] = ENV["LANG"] = "C" -SVNURL = URI.parse("http://svn.ruby-lang.org/repos/ruby/") +SVNURL = URI.parse("https://svn.ruby-lang.org/repos/ruby/") GITURL = URI.parse("https://github.com/ruby/ruby.git") RUBY_VERSION_PATTERN = /^\#define\s+RUBY_VERSION\s+"([\d.]+)"/ Index: test/minitest/test_minitest_unit.rb =================================================================== --- test/minitest/test_minitest_unit.rb (revision 64087) +++ test/minitest/test_minitest_unit.rb (revision 64088) @@ -1122,7 +1122,7 @@ class TestMiniTestUnitTestCase < MiniTes https://github.com/ruby/ruby/blob/trunk/test/minitest/test_minitest_unit.rb#L1122 # *sigh* This is quite an odd scenario, but it is from real (albeit # ugly) test code in ruby-core: # - # http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29259 + # https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29259 def test_assert_raises_skip @assertion_count = 0 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/