Skip to content

Commit

Permalink
change run_me.R to RUN_ME_FIRST.R
Browse files Browse the repository at this point in the history
  • Loading branch information
RaymondBalise committed Apr 6, 2024
1 parent d3500ac commit abc86cc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rUM
Title: R Templates from the University of Miami
Version: 1.1.0.9001
Version: 1.1.0.9002
Authors@R:
c(
person(
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# rUM (development version)

## 1.1.0.9002

+ change run_me.R to RUN_ME_FIRST.R

# rUM 2.0.0 (Overproof Rum)

+ Added an `example` argument to `make_project()`
Expand Down
4 changes: 2 additions & 2 deletions R/make_project.R
Original file line number Diff line number Diff line change
Expand Up @@ -188,15 +188,15 @@ make_project <- function(
"gists/manual_change_rmd_vigette.R",
package = "rUM"
),
paste0(path, "/run_me.R")
paste0(path, "/RUN_ME_FIRST.R")
)
} else if (type == "Quarto (analysis.qmd)") {
file.copy(
system.file(
"gists/manual_change_qmd_vigette.R",
package = "rUM"
),
paste0(path, "/run_me.R")
paste0(path, "/RUN_ME_FIRST.R")
)
}
}
Expand Down

0 comments on commit abc86cc

Please sign in to comment.