Skip to content

Commit

Permalink
switch maintainer in DESCRIPTION
Browse files Browse the repository at this point in the history
  • Loading branch information
guangchuang yu committed Nov 23, 2017
1 parent db8798f commit 00512b3
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 31 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Expand Up @@ -2,3 +2,4 @@ TODO.org
cran-comments.md
^.*\.Rproj$
^\.Rproj\.user$
Makefile
9 changes: 5 additions & 4 deletions DESCRIPTION
@@ -1,9 +1,9 @@
Package: scholar
Authors@R: c(
person("James", "Keirstead", email = "james.keirstead@gmail.com", role = c("aut", "cre")),
person("Gregory", "Jefferis", email = "jefferis@gmail.com", role = "ctb"))
Maintainer: James Keirstead <james.keirstead@gmail.com>
Author: James Keirstead <james.keirstead@gmail.com>
person("Guangchuang", "Yu", email = "guangchuangyu@gmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-6485-8781")),
person("James", "Keirstead", email = "james.keirstead@gmail.com", role = "aut"),
person("Gregory", "Jefferis", email = "jefferis@gmail.com", role = "ctb"))
Maintainer: Guangchuang Yu <guangchuangyu@gmail.com>
Version: 0.1.5
License: MIT + file LICENSE
Title: Analyse Citation Data from Google Scholar
Expand All @@ -22,3 +22,4 @@ Imports:
xml2
Suggests:
roxygen2
RoxygenNote: 6.0.1
33 changes: 33 additions & 0 deletions Makefile
@@ -0,0 +1,33 @@
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC := $(shell basename `pwd`)

all: rd check clean

rd:
Rscript -e 'roxygen2::roxygenise(".")'

build:
cd ..;\
R CMD build $(PKGSRC)

build2:
cd ..;\
R CMD build --no-build-vignettes $(PKGSRC)

install:
cd ..;\
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz

check: build
cd ..;\
Rscript -e 'rcmdcheck::rcmdcheck("$(PKGNAME)_$(PKGVERS).tar.gz", args="--as-cran")'

check2: build
cd ..;\
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz

clean:
cd ..;\
$(RM) -r $(PKGNAME).Rcheck/

2 changes: 1 addition & 1 deletion NAMESPACE
@@ -1,4 +1,4 @@
# Generated by roxygen2 (4.0.1): do not edit by hand
# Generated by roxygen2: do not edit by hand

export(compare_scholar_careers)
export(compare_scholars)
Expand Down
4 changes: 2 additions & 2 deletions man/compare_scholar_careers.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/compare_scholars.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_article_cite_history.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_citation_history.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_num_articles.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_num_distinct_journals.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_num_top_journals.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_oldest_article.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_profile.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/get_publications.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/predict_h_index.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/scholar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/tidy_id.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 00512b3

Please sign in to comment.