diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
commit | 06685f49044259bb92d06a2c94835d3a2de0fc7d (patch) | |
tree | 3dd15924654d528333f1b3137a1134fe3c3d6651 /eclass/ruby-fakegem.eclass | |
parent | Version bump (diff) | |
download | historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.tar.gz historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.tar.bz2 historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.zip |
fix random bugs in eclass documentation, and convert to new @AUTHOR tag
Diffstat (limited to 'eclass/ruby-fakegem.eclass')
-rw-r--r-- | eclass/ruby-fakegem.eclass | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass index 7c6b6ca861df..8093bda2ea88 100644 --- a/eclass/ruby-fakegem.eclass +++ b/eclass/ruby-fakegem.eclass @@ -1,20 +1,17 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.29 2011/04/25 08:36:51 graaff Exp $ -# +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.30 2011/08/22 04:46:32 vapier Exp $ + # @ECLASS: ruby-fakegem.eclass # @MAINTAINER: # Ruby herd <ruby@gentoo.org> -# +# @AUTHOR: # Author: Diego E. Pettenò <flameeyes@gentoo.org> -# # Author: Alex Legler <a3li@gentoo.org> -# # @BLURB: An eclass for installing Ruby packages to behave like RubyGems. # @DESCRIPTION: # This eclass allows to install arbitrary Ruby libraries (including Gems), # providing integration into the RubyGems system even for "regular" packages. -# inherit ruby-ng @@ -212,7 +209,7 @@ ruby_fakegem_genspec() { # so better taking this into consideration. local quoted_description=${DESCRIPTION//\"/\\\"} cat - > $1 <<EOF -# generated by ruby-fakegem.eclass $Revision: 1.29 $ +# generated by ruby-fakegem.eclass $Revision: 1.30 $ Gem::Specification.new do |s| s.name = "${RUBY_FAKEGEM_NAME}" s.version = "${RUBY_FAKEGEM_VERSION}" @@ -262,7 +259,7 @@ ruby_fakegem_binwrapper() { #!${rubycmd} # This is a simplified version of the RubyGems wrapper # -# Generated by ruby-fakegem.eclass $Revision: 1.29 $ +# Generated by ruby-fakegem.eclass $Revision: 1.30 $ require 'rubygems' |