[Abtlinux-svn] SF.net SVN: abtlinux: [77] src/trunk/Package.rb
Status: Alpha
Brought to you by:
eschabell
From: <esc...@us...> - 2006-04-02 20:20:49
|
Revision: 77 Author: eschabell Date: 2006-04-02 13:20:33 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/abtlinux/?rev=77&view=rev Log Message: ----------- First AbTLinux class file being added to play with for ruby doc generation testing. Added Paths: ----------- src/trunk/Package.rb Added: src/trunk/Package.rb =================================================================== --- src/trunk/Package.rb (rev 0) +++ src/trunk/Package.rb 2006-04-02 20:20:33 UTC (rev 77) @@ -0,0 +1,41 @@ +#!/usr/bin/ruby -w + +## +# Package.rb +# +# Package class provides an interface to package creation within AbTLinux. By +# inheriting from this class (class Fortune < Package) one picks up all +# supported standard functions for the abt package manager to make use of the +# new package. +# +# Created by Eric D. Schabell <er...@ab...> +# Copyright 2006, GPL. +# +# This file is part of AbTLinux. +# +# AbTLinux is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin +# St, Fifth Floor, Boston, MA 02110-1301 USA +## + +class Package + + protected + + def details + end + + def pre + end + +end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |