Browse Source

c'mon travis\!

master
boB Rudis 6 years ago
parent
commit
c76ec1e705
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 2
      NAMESPACE
  2. 2
      R/cloc-git.R
  3. 2
      R/cloc-recognized-languages.r
  4. 2
      README.Rmd
  5. 2
      README.md
  6. 2
      man/cloc_git.Rd
  7. 6
      man/cloc_recognized_languages.Rd

2
NAMESPACE

@ -8,8 +8,8 @@ export(cloc_git)
export(cloc_help)
export(cloc_os)
export(cloc_pkg)
export(cloc_recognized_languages)
export(cloc_remove_comments)
export(cloc_reognized_languages)
export(cloc_version)
import(rstudioapi)
importFrom(DT,datatable)

2
R/cloc-git.R

@ -4,7 +4,7 @@
#' @param repo path to git repo; if `repo` is a URL like `git://`, it will be fetched into
#' a temporary directory
#' @param commit "`.`" for the current source tree or the commit identifier for a specific commit
#' @param branch,credentials,progressed passed on to [git2r::clone()].
#' @param branch,credentials,progress passed on to [git2r::clone()].
#' @return data frame (tibble)
#' @export
#' @examples \dontrun{

2
R/cloc-recognized-languages.r

@ -25,7 +25,7 @@
#' @export
#' @examples
#' cloc_reognized_languages()
cloc_reognized_languages <- function() {
cloc_recognized_languages <- function() {
perl <- Sys.which("perl")

2
README.Rmd

@ -35,7 +35,7 @@ The following functions are implemented:
- `cloc_cran`: Count lines of code (etc) from source packages on CRAN
- `cloc_git`: Count lines of code, comments and whitespace in a git tree
- `cloc_remove_comments`: Strip comments and white space from a single source file
- `cloc_reognized_languages`: Return a data frame of 'cloc' recognized languages and associated extensions
- `cloc_recognized_languages`: Return a data frame of 'cloc' recognized languages and associated extensions
- `cloc_call`: Call 'cloc.pl' directly with granular control over options
- `cloc_help`: See the command-line help
- `cloc_version`: Retrieve the version of the embedded perl script

2
README.md

@ -32,7 +32,7 @@ The following functions are implemented:
tree
- `cloc_remove_comments`: Strip comments and white space from a single
source file
- `cloc_reognized_languages`: Return a data frame of ‘cloc’ recognized
- `cloc_recognized_languages`: Return a data frame of ‘cloc’ recognized
languages and associated extensions
- `cloc_call`: Call ‘cloc.pl’ directly with granular control over
options

2
man/cloc_git.Rd

@ -13,7 +13,7 @@ a temporary directory}
\item{commit}{"\code{.}" for the current source tree or the commit identifier for a specific commit}
\item{branch, credentials, progressed}{passed on to \code{\link[git2r:clone]{git2r::clone()}}.}
\item{branch, credentials, progress}{passed on to \code{\link[git2r:clone]{git2r::clone()}}.}
}
\value{
data frame (tibble)

6
man/cloc_reognized_languages.Rd → man/cloc_recognized_languages.Rd

@ -1,10 +1,10 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cloc-recognized-languages.r
\name{cloc_reognized_languages}
\alias{cloc_reognized_languages}
\name{cloc_recognized_languages}
\alias{cloc_recognized_languages}
\title{Return a data frame of \code{cloc} recognized languages and associated extensions}
\usage{
cloc_reognized_languages()
cloc_recognized_languages()
}
\value{
tibble
Loading…
Cancel
Save