README.rdoc in dwc-archive-0.1.4 vs README.rdoc in dwc-archive-0.1.5
- old
+ new
@@ -11,17 +11,19 @@
== Usage
require 'rubygems'
require 'dwc-archive'
- dwc = DWCA::DarwinCore.new('/path_to_file/archive_file.tar.gz')
- dwc.archive.files # the archive file list
- dwc.metadata.data # summary of metadata from eml.xml if it exists
- dwc.metadata.authors # authors of the archive
- dwc.core.data # summary of DarwinCore main file
- dwc.core.file_path # path to the DarwinCore main file
- dwc.core.extensions # array of DarwinCore Star extensions
- dwc.core.extensions[0].data # summary for an extension
+ dwc = DarwinCore.new('/path_to_file/archive_file.tar.gz')
+ dwc.archive.files # the archive file list
+ dwc.metadata.data # summary of metadata from eml.xml if it exists
+ dwc.metadata.authors # authors of the archive
+ dwc.core.data # summary of DarwinCore main file
+ dwc.core.file_path # path to the DarwinCore main file
+ dwc.extensions # array of DarwinCore Star extensions
+ dwc.extensions[0].data # summary for an extension
+
+ DarwinCore.clean_all # remove all expanded archives
== Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.