-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from databio/dev
Release PR for v 0.4.0
- Loading branch information
Showing
32 changed files
with
625 additions
and
201 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 |
---|---|---|
|
@@ -3,4 +3,6 @@ | |
^\.travis\.yml$ | ||
^cran-comments.md$ | ||
^CONDUCT\.md$ | ||
^paper$ | ||
^paper$ | ||
.github | ||
^_pkgdown\.yaml$ |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# CONTRIBUTING # | ||
|
||
### Please contribute! | ||
|
||
We love collaboration. | ||
|
||
### Bugs? | ||
|
||
* Submit an issue on the [Issues page](https://github.com/databio/simpleCache/issues) | ||
|
||
### Code contributions | ||
|
||
* Fork this repo to your Github account | ||
* Clone your version on your account down to your machine from your account, e.g,. `git clone https://github.com/databio/simpleCache.git` | ||
* Make sure to track progress upstream (i.e., on our version of `simpleCache` at `databio/simpleCache`) by doing `git remote add upstream https://github.com/databio/simpleCache.git`. Before making changes make sure to pull changes in from upstream by doing either `git fetch upstream` then merge later or `git pull upstream` to fetch and merge in one step | ||
* Make your changes (bonus points for making changes on a new feature branch) | ||
* Push up to your account | ||
* Submit a pull request to home base (likely master branch, but check to make sure) at `databio/simpleCache` | ||
|
||
### Thanks for contributing! |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- If this issue relates to usage of the package, whether a question, bug or similar, along with your query, please paste your devtools::session_info() or sessionInfo() into the code block below, AND include a reproducible example. If not, delete all this and proceed :) --> | ||
|
||
<details> <summary><strong>Session Info</strong></summary> | ||
|
||
```r | ||
|
||
``` | ||
</details> |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
## Description | ||
<!--- Describe your changes in detail --> | ||
|
||
## Related Issue | ||
<!--- if this closes an issue make sure include e.g., "fix #4" | ||
or similar - or if just relates to an issue make sure to mention | ||
it like "#4" --> | ||
|
||
## Example | ||
<!--- if introducing a new feature or changing behavior of existing | ||
methods/functions, include an example if possible to do in brief form --> | ||
|
||
<!--- Did you remember to include tests? Unless you're just changing | ||
grammar, please include new tests for your change --> |
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,5 @@ | ||
Package: simpleCache | ||
Version: 0.3.1 | ||
Version: 0.4.0 | ||
Date: 2017-08-21 | ||
Title: Simply Caching R Objects | ||
Description: Provides intuitive functions for caching R objects, encouraging | ||
|
@@ -13,14 +13,13 @@ Description: Provides intuitive functions for caching R objects, encouraging | |
Authors@R: c(person("VP", "Nagraj", email = "[email protected]", role = | ||
c("aut")), person("Nathan", "Sheffield", email = "[email protected]", | ||
role = c("aut", "cre"))) | ||
Maintainer: Nathan Sheffield <[email protected]> | ||
Suggests: | ||
knitr, | ||
testthat | ||
Enhances: batchtools | ||
VignetteBuilder: knitr | ||
License: BSD_2_clause + file LICENSE | ||
Encoding: UTF-8 | ||
URL: http://www.github.com/databio/simpleCache | ||
BugReports: http://www.github.com/databio/simpleCache | ||
URL: https://www.github.com/databio/simpleCache | ||
BugReports: https://www.github.com/databio/simpleCache | ||
RoxygenNote: 6.0.1.9000 |
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
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
Oops, something went wrong.