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
- Host: GitHub
- URL: https://github.com/kaledoux/basic_ruby_app_template
- Owner: kaledoux
- Created: 2024-11-16T19:39:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-17T19:15:07.000Z (over 1 year ago)
- Last Synced: 2025-01-22T05:15:27.413Z (over 1 year ago)
- Language: Ruby
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)