diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-03-13 00:51:47 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-03-15 01:18:03 +0900 |
commit | 41d63d3130acae4f1ba139522062479cf4ce5381 (patch) | |
tree | 2478ba1fb30cb1229985d64bcdf68bef9523da94 /lib/rubygems/compatibility.rb | |
parent | b1bcad5e3afa6f6f017c0d2378ab20f29c0d013a (diff) |
[rubygems/rubygems] Move `:stopdoc:` directive
If this is at the top level, it stops the documentation of the
entire module, but not only the part in this file.
https://github.com/rubygems/rubygems/commit/34e8c1ee06
Diffstat (limited to 'lib/rubygems/compatibility.rb')
-rw-r--r-- | lib/rubygems/compatibility.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/rubygems/compatibility.rb b/lib/rubygems/compatibility.rb index f1d452ea04..b4c1ef16fa 100644 --- a/lib/rubygems/compatibility.rb +++ b/lib/rubygems/compatibility.rb @@ -1,5 +1,4 @@ # frozen_string_literal: true -# :stopdoc: #-- # This file contains all sorts of little compatibility hacks that we've @@ -8,10 +7,13 @@ # # Ruby 1.9.x has introduced some things that are awkward, and we need to # support them, so we define some constants to use later. +# +# TODO remove at RubyGems 4 #++ -# TODO remove at RubyGems 4 module Gem + # :stopdoc: + RubyGemsVersion = VERSION deprecate_constant(:RubyGemsVersion) |