Skip to content

Commit 48d52fd

Browse files
author
Kirill Müller
committed
Merge branch 'release/0.2' into production
2 parents 96f2351 + 5e9aa55 commit 48d52fd

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

DESCRIPTION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Package: rprojroot
22
Title: Finding Files in Project Subdirectories
3-
Version: 0.1-1
4-
Authors@R: as.person("Kirill Müller <krlmlr+r@mailbox.org> [aut, cre]")
3+
Version: 0.2
4+
Authors@R: person(given = "Kirill", family = "Müller", role = c("aut",
5+
"cre"), email = "krlmlr+r@mailbox.org")
56
Description: Robust, reliable and flexible paths to files below a
67
project root. The 'root' of a project is defined as a directory
78
that matches a certain criterion, e.g., it contains a certain

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
-include makeR/Makefile
2-
-include Makefile.in
1+
MAKEFILE_LOC := $(shell Rscript -e "cat(system.file('Makefile',package='rflow'))" )
2+
include ${MAKEFILE_LOC}

NEWS.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Version 0.1-1 (2016-02-04)
2-
===
1+
# rprojroot 0.2 (2016-03-24)
32

43
- Add TL;DR section to vignette.
54
- Root criteria now have two function members, `find_file()` and `make_fix_file()`, instead of the now removed `make_find_root_file()` and `make_fix_root_file()`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- README.md is generated from README.Rmd. Please edit that file -->
2-
[rprojroot](https://krlmlr.github.io/rprojroot) [![wercker status](https://app.wercker.com/status/c4dfa136cd78514514e259cc388e880c/s/master "wercker status")](https://app.wercker.com/project/bykey/c4dfa136cd78514514e259cc388e880c) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/krlmlr/rprojroot?branch=master&svg=true)](https://ci.appveyor.com/project/krlmlr/rprojroot) [![codecov.io](https://codecov.io/github/krlmlr/rprojroot/coverage.svg?branch=master)](https://codecov.io/github/krlmlr/rprojroot?branch=master)
3-
=======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================
2+
[rprojroot](https://krlmlr.github.io/rprojroot) [![wercker status](https://app.wercker.com/status/c4dfa136cd78514514e259cc388e880c/s/master "wercker status")](https://app.wercker.com/project/bykey/c4dfa136cd78514514e259cc388e880c) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/krlmlr/rprojroot?branch=master)](https://ci.appveyor.com/project/krlmlr/rprojroot) [![codecov.io](https://codecov.io/github/krlmlr/rprojroot/coverage.svg?branch=master)](https://codecov.io/github/krlmlr/rprojroot?branch=master) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/rprojroot)](https://cran.r-project.org/package=rprojroot)
3+
=============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================
44

55
This package helps accessing files relative to a *project root* to [stop the working directory insanity](https://gist.github.com/jennybc/362f52446fe1ebc4c49f).
66

readme/README.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ knitr::opts_chunk$set(
1818
)
1919
```
2020

21-
[rprojroot](https://krlmlr.github.io/rprojroot) [![wercker status](https://app.wercker.com/status/c4dfa136cd78514514e259cc388e880c/s/master "wercker status")](https://app.wercker.com/project/bykey/c4dfa136cd78514514e259cc388e880c) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/krlmlr/rprojroot?branch=master)](https://ci.appveyor.com/project/krlmlr/rprojroot) [![codecov.io](https://codecov.io/github/krlmlr/rprojroot/coverage.svg?branch=master)](https://codecov.io/github/krlmlr/rprojroot?branch=master)
21+
[rprojroot](https://krlmlr.github.io/rprojroot) [![wercker status](https://app.wercker.com/status/c4dfa136cd78514514e259cc388e880c/s/master "wercker status")](https://app.wercker.com/project/bykey/c4dfa136cd78514514e259cc388e880c) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/krlmlr/rprojroot?branch=master)](https://ci.appveyor.com/project/krlmlr/rprojroot) [![codecov.io](https://codecov.io/github/krlmlr/rprojroot/coverage.svg?branch=master)](https://codecov.io/github/krlmlr/rprojroot?branch=master) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/rprojroot)](https://cran.r-project.org/package=rprojroot)
2222
=================================================================================================================================================================================================================================================================================================================================================
2323

2424
This package helps accessing files relative to a *project root* to [stop the working directory insanity](https://gist.github.com/jennybc/362f52446fe1ebc4c49f).
@@ -43,7 +43,7 @@ dir(rprojroot::find_root("DESCRIPTION"))
4343
Install from GitHub:
4444

4545
``` r
46-
devtools::install("krlmlr/rprojroot")
46+
devtools::install_github("krlmlr/rprojroot")
4747
```
4848

4949
See the [vignette](http://krlmlr.github.io/rprojroot/vignettes/rprojroot.html) for more detail.

0 commit comments

Comments
 (0)