-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement automatic editing v1. (#4)
- Loading branch information
1 parent
373aad6
commit 5325704
Showing
6 changed files
with
443 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: bookclubcron | ||
Title: Automated Tasks for R4DS Book Clubs | ||
Version: 0.0.0.9000 | ||
Version: 0.0.1 | ||
Authors@R: | ||
person("Jon", "Harmon", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-4781-4346")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
log_now <- function() { | ||
now <- format( | ||
Sys.time(), | ||
format = "%F %T" | ||
) | ||
return( | ||
glue::glue("{lubridate::now()} |") | ||
glue::glue("{now} |") | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.