diff options
-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: # |