Skip to content

Commit

Permalink
Readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fmgarciadiaz committed Jun 14, 2020
1 parent 233de91 commit 34d9f61
Show file tree
Hide file tree
Showing 9 changed files with 6,706 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@
^NEWS\.md$
^cran-comments\.md$
^CRAN-RELEASE$
^PortalHacienda-Logo\.ai$
^PortalHacienda-Logo-01\.png$
^\.github$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
24 changes: 24 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@master
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck"))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}
4 changes: 2 additions & 2 deletions CRAN-RELEASE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
This package was submitted to CRAN on 2020-06-07.
Once it is accepted, delete this file and tag the release (commit 0c2fee9e6b).
This package was submitted to CRAN on 2020-06-13.
Once it is accepted, delete this file and tag the release (commit 233de9139e).
Binary file added PortalHacienda-Logo-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6,638 changes: 6,638 additions & 0 deletions PortalHacienda-Logo.ai

Large diffs are not rendered by default.

18 changes: 15 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ knitr::opts_chunk$set(
)
```

# PortalHacienda
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/PortalHacienda)](https://cran.r-project.org/package=PortalHacienda)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![R build status](https://github.com/fmgarciadiaz/PortalHacienda-CRAN/workflows/R-CMD-check/badge.svg)](https://github.com/fmgarciadiaz/PortalHacienda-CRAN/actions)
<!-- badges: end -->


# PortalHacienda <a href='https:/tidyr.tidyverse.org'><img src='PortalHacienda-Logo-01.png' align="right" height="139" /></a>


Un paquete de interfase a la API del Portal de Datos del Ministerio de Hacienda

Expand All @@ -34,11 +42,15 @@ Para instalar el paquete en R ejecutar:
```{r gh-installation, eval = FALSE}
# Stable
# install.packages("PortalHacienda")
```

Versión de desarrollo:

```{r gh-installation2, eval = FALSE}
# Development
# install.packages("devtools")
# devtools::install_github("fmgarciadiaz/PortalHacienda")
```

**Nota**: Debe instalarse previamente el paquete `devtools` para permitir la descarga desde `github`.

## Ejemplo
Expand Down Expand Up @@ -86,7 +98,7 @@ Las series diarias tienen un tope de **1000** datos (dado el límite actual de l

# Estado del Proyecto

- [ ] Aprobado en CRAN
- [x] Aprobado en CRAN
- [x] Funcionalidad *básica*
- [x] Captura de errores de uso o en la devolución de datos (básico)
- [ ] Captura de errores avanzada
Expand Down
11 changes: 7 additions & 4 deletions README.html

Large diffs are not rendered by default.

19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ output:



# PortalHacienda
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/PortalHacienda)](https://cran.r-project.org/package=PortalHacienda)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![R build status](https://github.com/fmgarciadiaz/PortalHacienda-CRAN/workflows/R-CMD-check/badge.svg)](https://github.com/fmgarciadiaz/PortalHacienda-CRAN/actions)
<!-- badges: end -->


# PortalHacienda <a href='https:/tidyr.tidyverse.org'><img src='PortalHacienda-Logo-01.png' align="right" height="139" /></a>


Un paquete de interfase a la API del Portal de Datos del Ministerio de Hacienda

Expand All @@ -29,11 +37,16 @@ Para instalar el paquete en R ejecutar:
```r
# Stable
# install.packages("PortalHacienda")
```

Versión de desarrollo:


```r
# Development
# install.packages("devtools")
# devtools::install_github("fmgarciadiaz/PortalHacienda")
```

**Nota**: Debe instalarse previamente el paquete `devtools` para permitir la descarga desde `github`.

## Ejemplo
Expand Down Expand Up @@ -217,7 +230,7 @@ Las series diarias tienen un tope de **1000** datos (dado el límite actual de l

# Estado del Proyecto

- [ ] Aprobado en CRAN
- [x] Aprobado en CRAN
- [x] Funcionalidad *básica*
- [x] Captura de errores de uso o en la devolución de datos (básico)
- [ ] Captura de errores avanzada
Expand Down

0 comments on commit 34d9f61

Please sign in to comment.