An open API service indexing awesome lists of open source software.

https://github.com/kaledoux/basic_ruby_app_template

A template for spinningup basic Ruby test apps with RSpec and HTTParty included
https://github.com/kaledoux/basic_ruby_app_template

Last synced: over 1 year ago
JSON representation

A template for spinningup basic Ruby test apps with RSpec and HTTParty included

Awesome Lists containing this project

README

          

# Basic Ruby App Template

This is just a template used to quickly spin up basic Ruby apps. The idea is to provide a basic enough template to cover setup for simple functionality; further customization can and should be done depending on the needs of the app.

## Gems
At this point I include only a few basic Gems:

**Testing**
- [Pry](https://github.com/pry)
- [RSpec](https://github.com/rspec)
- [Mocha](https://github.com/freerange/mocha)
- [WebMock](https://github.com/bblimke/webmock)

**Style**
- [Rubocop](https://github.com/rubocop/rubocop)

**Req/Response**
- [HTTParty](https://github.com/jnunemaker/httparty/tree/main)