Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cake-contrib/cake.rest
Cake Addin to ease consumption of REST APIs, through aliases for RestSharp
https://github.com/cake-contrib/cake.rest
cake cake-addin cake-build csharp rest rest-api restsharp
Last synced: 21 days ago
JSON representation
Cake Addin to ease consumption of REST APIs, through aliases for RestSharp
- Host: GitHub
- URL: https://github.com/cake-contrib/cake.rest
- Owner: cake-contrib
- License: mit
- Created: 2019-02-02T02:04:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:02:30.000Z (about 2 years ago)
- Last Synced: 2024-11-17T07:21:16.137Z (about 2 months ago)
- Topics: cake, cake-addin, cake-build, csharp, rest, rest-api, restsharp
- Language: C#
- Homepage: https://www.nuget.org/packages/Cake.Rest
- Size: 39.1 KB
- Stars: 1
- Watchers: 8
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Cake.Rest
Cake Add-in to ease consumption of REST APIs using [RestSharp](http://restsharp.org/).
[![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/cake-contrib/Cake.Rest/blob/master/LICENSE)
## Information
| | master branch |
|---|---|
|NuGet|[![NuGet](https://img.shields.io/nuget/v/Cake.Rest.svg)](https://www.nuget.org/packages/Cake.Rest)|
|AppVeyor|[![Build status](https://img.shields.io/appveyor/ci/cakecontrib/cake-rest.svg)](https://ci.appveyor.com/project/cakecontrib/cake-rest)|
|Travis CI|[![Build status](https://api.travis-ci.com/cake-contrib/Cake.Rest.svg?branch=master)](https://travis-ci.com/cake-contrib/Cake.Rest)|
|Code Coverage|[![Code Coverage](https://img.shields.io/coveralls/github/cake-contrib/Cake.Rest.svg?style=flat)](https://coveralls.io/github/cake-contrib/Cake.Rest)|## Build
To build this library, we use [Cake](https://cakebuild.net/) and [Cake.Recipe](https://github.com/cake-contrib/Cake.Recipe).
On Windows PowerShell, run the bootstrapper through:
```powershell
.\build.ps1
```or on Linux/macOS:
```
./build.sh
```## Credits
- João Antunes (Coding Militia) for [his great walkthrough on using Cake on CI/CD to publish a library to NuGet](http://https://blog.codingmilitia.com/2018/07/30/creating-ci-cd-pipeline-dotnet-library-part-02-defining-the-build-with-cake-publish-nuget). Code from example project used under MIT.- [@phillipsj](https://github.com/phillipsj) for [Cake.Netlify](https://github.com/cake-contrib/Cake.Netlify), some Cake code and some parts of CI/CD configurations come from that repo.
- [The RestSharp Project](http://restsharp.org/), without RestSharp this would not be this easy.