README.md in tartlet-0.0.1 vs README.md in tartlet-0.0.2
- old
+ new
@@ -41,26 +41,17 @@
ex:
$ tartlet compress foo bar baz
- ***TODO***: do a clobbering check before making the tarball to ensure file
- safety
-
* `extract` - takes a single zipped tarball and extracts it into the current
directory
ex:
$ tartlet extract archive.tar.gz
- ***TODO***: take a list of tarballs and extract them each into their own
- folder
-
- ***TODO***: do a clobbering check before extracting the tarball to ensure
- file safety
-
### Options
Options can be placed anywhere in the command, eg. `tartlet -d compress -o
target file1 file2` is the same as `tartlet compress file1 file2 -d -o target`
which is the same as `tartlet compress -d file1 -o target file2`. I prefer to
@@ -110,5 +101,24 @@
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
+
+## TODO Features:
+
+* Clobber Checks:
+
+ * **compress** - Make sure that the target archive doesn't already exist
+ before creating the file.
+
+ * **extract** - Make sure that the files in the tarball don't already exist
+ in the output directory.
+
+* Multiple Extract:
+
+ Allow a list of files to extract, and extract all of them into separate
+ directories
+
+* RDoc Comments:
+
+ Comments. Comments everywhere.