From: Ben Kohler Date: Mon, 16 Sep 2019 13:46:13 +0000 (-0500) Subject: ruby-fakegem.eclass: fix misspelled function name & minor @USAGE syntax X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=04ddac6e55be4d2faa21e83696cbac3825c57d27;p=gentoo.git ruby-fakegem.eclass: fix misspelled function name & minor @USAGE syntax Signed-off-by: Ben Kohler --- diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass index a6a7654f9e6d..f75e1669b0ca 100644 --- a/eclass/ruby-fakegem.eclass +++ b/eclass/ruby-fakegem.eclass @@ -207,7 +207,7 @@ ruby_fakegem_gemsdir() { } # @FUNCTION: ruby_fakegem_doins -# @USAGE: file [file...] +# @USAGE: [file...] # @DESCRIPTION: # Installs the specified file(s) into the gems directory. ruby_fakegem_doins() { @@ -217,8 +217,8 @@ ruby_fakegem_doins() { ) || die "failed $0 $@" } -# @FUNCTION: ruby_fakegem_newsins -# @USAGE: file filename +# @FUNCTION: ruby_fakegem_newins +# @USAGE: # @DESCRIPTION: # Installs the specified file into the gems directory using the provided filename. ruby_fakegem_newins() { @@ -262,7 +262,7 @@ ruby_fakegem_install_gemspec() { } # @FUNCTION: ruby_fakegem_gemspec_gemspec -# @USAGE: gemspec-input gemspec-output +# @USAGE: # @DESCRIPTION: # Generates an installable version of the specification indicated by # RUBY_FAKEGEM_GEMSPEC. This file is eval'ed to produce a final specification @@ -272,7 +272,7 @@ ruby_fakegem_gemspec_gemspec() { } # @FUNCTION: ruby_fakegem_metadata_gemspec -# @USAGE: gemspec-metadata gemspec-output +# @USAGE: # @DESCRIPTION: # Generates an installable version of the specification indicated by # the metadata distributed by the gem itself. This is similar to how @@ -282,7 +282,7 @@ ruby_fakegem_metadata_gemspec() { } # @FUNCTION: ruby_fakegem_genspec -# @USAGE: output-gemspec +# @USAGE: # @DESCRIPTION: # Generates a gemspec for the package and places it into the "specifications" # directory of RubyGems. @@ -327,7 +327,7 @@ EOF } # @FUNCTION: ruby_fakegem_binwrapper -# @USAGE: command [path] [content] +# @USAGE: [path] [content] # @DESCRIPTION: # Creates a new binary wrapper for a command installed by the RubyGem. # path defaults to /usr/bin/$command content is optional and can be used