README.html
[pkgdev.git] / README
diff --git a/README b/README
deleted file mode 100644 (file)
index be4a6d0..0000000
--- a/README
+++ /dev/null
@@ -1,36 +0,0 @@
-|--------------
-| Basic usage :
-|--------------
-
-#Install
-R CMD INSTALL path/to/pkgdev/folder
-
-#Launch R
-R
-
-#load library
-library(pkgdev)
-
-#load some package
-pkgpath = "path/to/some/package"
-pkgdev.load(pkgpath)
-
-#test it (if unit tests defined under tests/ subfolders)
-pkgdev.rtest(pkgpath)
-pkgdev.rtest(pkgpath)
-
-#you can also run its functions
-foo(...)
-bar(...)
-
-#reload package to test modifications
-pkgdev.load(pkgpath)
-
-#...and so on
-
-#finally, unload package
-pkgdev.unload(pkgpath)
-
----------------------------------
-
-Try also pkgTest/ testing package