You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by th...@apache.org on 2022/06/28 09:28:56 UTC

[arrow] branch master updated: ARROW-16829: [R] Add link to new contributors guide to developer guide

This is an automated email from the ASF dual-hosted git repository.

thisisnic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e86932899 ARROW-16829: [R] Add link to new contributors guide to developer guide
6e86932899 is described below

commit 6e8693289938a7603e662761ea91ce766c54f2e0
Author: Nic Crane <th...@gmail.com>
AuthorDate: Tue Jun 28 10:28:44 2022 +0100

    ARROW-16829: [R] Add link to new contributors guide to developer guide
    
    Adds a link to the new contributors guide, and links to articles in the "developers" section of the docs, to the "developing" vignette.
    
    Closes #13378 from thisisnic/ARROW-16829_link
    
    Authored-by: Nic Crane <th...@gmail.com>
    Signed-off-by: Nic Crane <th...@gmail.com>
---
 r/vignettes/developing.Rmd | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/r/vignettes/developing.Rmd b/r/vignettes/developing.Rmd
index 3869a36e65..4aca2911a7 100644
--- a/r/vignettes/developing.Rmd
+++ b/r/vignettes/developing.Rmd
@@ -11,9 +11,13 @@ If you're interested in contributing to arrow, this vignette explains our approa
 at a high-level.  If you're looking for more detailed content, you may want to 
 look at one of the following links:
 
+* [in-depth guide to contributing to Arrow, including step-by-step examples](https://arrow.apache.org/docs/developers/guide/index.html)
 * [setting up a development environment and building the components that make up the Arrow project and R package](https://arrow.apache.org/docs/r/articles/developers/setup.html)
 * [common Arrow dev workflow tasks](https://arrow.apache.org/docs/r/articles/developers/workflow.html)
 * [running R with the C++ debugger attached](https://arrow.apache.org/docs/r/articles/developers/debugging.html)
+* [in-depth guide to how the package installation works](https://arrow.apache.org/docs/r/articles/developers/install_details.html)
+* [using Docker to diagnose a bug or test a feature on a specific OS](https://arrow.apache.org/docs/r/articles/developers/docker.html)
+* [writing bindings between R functions and Arrow Acero functions](https://arrow.apache.org/docs/r/articles/developers/bindings.html)
 
 # Approach to implementing functionality