Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. [<start>] -> [<choice> On GH?]
  2. [On GH?] -> No [<package>create_package()]
  3. [On GH?] -> Yes [<choice> Cloned?]
  4. [Cloned?] -> No [<package>create_from_github()]
  5. [create_package()] -> [<package> use_git()]
  6. [use_git()] -> [Edit DESCRIPTION]
  7. [Edit DESCRIPTION] -> [<package> use_mit_license()]
  8. [use_mit_license()] ->[<state> Write a function]
  9. [Write a function] -> [<package> use_r()]
  10. [Cloned?] -> Yes [Pull from repo]
  11. [Pull from repo] -> [Write a function]
  12. [create_from_github()] -> Yes [Write a function]
  13. [use_r()] -> [<package> use_test()]
  14. [use_test()] -> [<package>load_all()]
  15. [load_all()] -> [<package> test()]
  16. [test()] -> [<choice> Pass?]
  17. [Pass?] No -> [<package> Fix function]
  18. [Fix function] -> [load_all()]
  19. [Pass?] Yes-> [<choice>More funs?]
  20. [More funs?] ->Yes[Write a function]
  21. [More funs?] ->No [<package> check()]
  22. [check()] -> [<package>install()]
  23. [install()] -> [Commit]
  24. [Commit] -> [<choice>Pkg on GH?]
  25. [Pkg on GH?] ->No [<package> use_github()]
  26. [use_github()] -> [<package> use_readme_rmd()]
  27. [use_readme_rmd()] -> [Edit & Knit README]
  28. [Edit & Knit README] -> [Push to repo]
  29. [Pkg on GH?] ->Yes[Edit & Knit README]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement