Skip to content

Commit

Permalink
merge pull request #63 from shawntschwartz/11-feature-request-variabl…
Browse files Browse the repository at this point in the history
…e-trial-length-epoch-parsing-methods

BREAKING CHANGES: #11 feature request variable trial length epoch parsing methods
  • Loading branch information
shawntz authored Sep 19, 2024
2 parents b0fb2f3 + ddadafc commit d06b60b
Show file tree
Hide file tree
Showing 6 changed files with 537 additions and 2,912 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# default target
all: uninstall getdeps build install roxygenize clean

# debugging target
debug: uninstall build install clean

# uninstall dev version of package if loaded
uninstall:
Rscript -e "if (!requireNamespace('devtools', quietly = TRUE)) install.packages('devtools')"
Rscript -e "if (!requireNamespace('devtools', quietly = TRUE)) install.packages('devtools', repos = 'http://cran.us.r-project.org')"
Rscript -e "if (requireNamespace('eyeris', quietly = TRUE)) devtools::unload('eyeris')"
Rscript -e "if (requireNamespace('eyeris', quietly = TRUE)) remove.packages('eyeris')"

# install deps
getdeps:
Rscript -e "install.packages(c('eyelinker', 'dplyr', 'gsignal', 'tidyr', 'zoo'))"
Rscript -e "install.packages(c('eyelinker', 'dplyr', 'gsignal', 'tidyr', 'zoo'), repos = 'http://cran.us.r-project.org')"

# build package
build:
Expand Down
Loading

0 comments on commit d06b60b

Please sign in to comment.