https://github.com/nickforr/swagger
:construction_worker: Build R API Packages Automatically from Swagger <http://swagger.io> JSON Specifications
https://github.com/nickforr/swagger
Last synced: 4 months ago
JSON representation
:construction_worker: Build R API Packages Automatically from Swagger <http://swagger.io> JSON Specifications
- Host: GitHub
- URL: https://github.com/nickforr/swagger
- Owner: nickforr
- License: other
- Created: 2016-03-24T22:06:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-24T22:07:49.000Z (about 9 years ago)
- Last Synced: 2024-08-13T07:13:31.595Z (8 months ago)
- Language: R
- Homepage:
- Size: 21.5 KB
- Stars: 3
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - nickforr/swagger - :construction_worker: Build R API Packages Automatically from Swagger <http://swagger.io> JSON Specifications (R)
README
---
output:
md_document:
variant: markdown_github
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
swagger is an R package to create API packages from [Swagger.io](http://swagger.io/) JSON specifications.
The following functions are implemented:
- `swag`: Build an R web API package from a swagger definition
### News
- Version 0.0.0.9000 released
### Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/swagger")
``````{r echo=FALSE, message=FALSE, warning=FALSE, error=FALSE}
options(width=120)
```### Usage
```{r}
library(swagger)# current verison
packageVersion("swagger")```
### Test Results
```{r}
library(swagger)
library(testthat)date()
test_dir("tests/")
```### Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md).
By participating in this project you agree to abide by its terms.