Skip to content

Commit

Permalink
remove all remnants of course authoring code
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarchedi committed Mar 16, 2014
1 parent d181aba commit ea582fa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 113 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Imports:
testthat,
openintro,
httr,
whisker,
yaml,
RCurl,
digest
Expand Down
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Generated by roxygen2 (4.0.0): do not edit by hand

export(author_lesson)
export(bye)
export(info)
export(install_course_directory)
Expand Down Expand Up @@ -43,6 +42,5 @@ importFrom(testthat,is_equivalent_to)
importFrom(testthat,is_identical_to)
importFrom(testthat,matches)
importFrom(tools,file_ext)
importFrom(whisker,whisker.render)
importFrom(yaml,yaml.load)
importFrom(yaml,yaml.load_file)
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* `uninstall_course()`: Uninstall a course
* `zip_course()`: Zip a course directory

* Course authors can add custom tests for student repsonses.
* Course authors can add custom tests for student responses.
* Custom tests may be defined in the lesson directory in file named customTests.R.
* Custom tests run in the same environment as tests provided with the package.

Expand Down
77 changes: 0 additions & 77 deletions R/author_lesson.R

This file was deleted.

6 changes: 6 additions & 0 deletions R/utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ swirl_out <- function(..., skip_before=TRUE, skip_after=FALSE) {
message(mes)
}

# Takes a plain English name and turns it into a more proper
# file or directory name
make_pathname <- function(name) {
gsub(" ", "_", str_trim(name))
}

xfer <- function(env1, env2){
lapply(ls(env1), function(var)getAssign(var, env1, env2))
}
Expand Down
32 changes: 0 additions & 32 deletions man/author_lesson.Rd

This file was deleted.

0 comments on commit ea582fa

Please sign in to comment.