based on code by: Loïc Minier <lool@dooz.org>

* morituri/rip/Makefile.am:
	* morituri/rip/main.py:
	* morituri/rip/accurip.py (added):
	  Add a rip accurip show command to show the accuraterip information
	  for a given URL.  See #5.
This commit is contained in:
Thomas Vander Stichele
2011-05-22 18:06:57 +00:00
parent 041a492f67
commit ac66d71e6b
4 changed files with 107 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
import sys
from morituri.common import log, logcommand, common, task
from morituri.rip import cd, offset, drive, image
from morituri.rip import cd, offset, drive, image, accurip
def main(argv):
c = Rip()
@@ -46,7 +46,8 @@ Rip gives you a tree of subcommands to work with.
You can get help on subcommands by using the -h option to the subcommand.
"""
subCommandClasses = [cd.CD, drive.Drive, offset.Offset, image.Image, ]
subCommandClasses = [accurip.AccuRip,
cd.CD, drive.Drive, offset.Offset, image.Image, ]
def addOptions(self):
# FIXME: is this the right place ?