diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-22 14:18:10 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-23 17:18:49 +0900 |
commit | acf12b6dfdd94ce1da55eaf2dfacc75135385c2a () | |
tree | e79a4eb8a815a48ca8ed70534b06287089747d33 /lib | |
parent | f24a86d83f07f214e97aa98da190cda55092805f (diff) |
util/rubocop -A --only Style/AsciiComments
Notes: Merged: https://.com/ruby/ruby/pull/7582
-rw-r--r-- | lib/rubygems/package.rb | 6 | ||||
-rw-r--r-- | lib/rubygems/package/tar_header.rb | 6 | ||||
-rw-r--r-- | lib/rubygems/package/tar_reader.rb | 6 | ||||
-rw-r--r-- | lib/rubygems/package/tar_reader/entry.rb | 6 | ||||
-rw-r--r-- | lib/rubygems/package/tar_writer.rb | 6 | ||||
-rw-r--r-- | lib/rubygems/specification.rb | 4 |
6 files changed, 22 insertions, 12 deletions
@@ -1,9 +1,11 @@ # frozen_string_literal: true -#-- # Copyright (C) 2004 Mauricio Julio Fernández Pradier # See LICENSE.txt for additional licensing information. -#++ require_relative "../rubygems" require_relative "security" @@ -1,9 +1,11 @@ # frozen_string_literal: true -#-- # Copyright (C) 2004 Mauricio Julio Fernández Pradier # See LICENSE.txt for additional licensing information. -#++ ## #-- @@ -1,9 +1,11 @@ # frozen_string_literal: true -#-- # Copyright (C) 2004 Mauricio Julio Fernández Pradier # See LICENSE.txt for additional licensing information. -#++ ## # TarReader reads tar files and allows iteration over their items @@ -1,9 +1,11 @@ # frozen_string_literal: true -#++ # Copyright (C) 2004 Mauricio Julio Fernández Pradier # See LICENSE.txt for additional licensing information. -#-- ## # Class for reading entries out of a tar file @@ -1,9 +1,11 @@ # frozen_string_literal: true -#-- # Copyright (C) 2004 Mauricio Julio Fernández Pradier # See LICENSE.txt for additional licensing information. -#++ ## # Allows writing of tar files @@ -575,7 +575,7 @@ class Gem::Specification < Gem::BasicSpecification ## # Executables included in the gem. # - # For example, the rake gem has rake as an executable. You don’t specify the # full path (as in bin/rake); all application-style files are expected to be # found in bindir. These files must be executable Ruby files. Files that # use bash or other interpreters will not work. @@ -596,7 +596,7 @@ class Gem::Specification < Gem::BasicSpecification # extconf.rb-style files used to compile extensions. # # These files will be run when the gem is installed, causing the C (or - # whatever) code to be compiled on the user’s machine. # # Usage: # |