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

https://github.com/andrekovac/recipies

First ruby on rails app (following along an Udemy Rails course)
https://github.com/andrekovac/recipies

Last synced: about 1 year ago
JSON representation

First ruby on rails app (following along an Udemy Rails course)

Awesome Lists containing this project

README

          

== README

=== testing specs for recipies
name: string
summary: text
description: text

- name must be present
- name must be between 5 characters and less than 100 characters
- summary must be present
- summary must be between 10 characters and less than 150 characters
- description must be present
- description must be between 20 and 500 characters
- chef_id must be present

=== testing specs for chefs
chefname: string
email: string

- chefname must be present
- chefname must be between 3 characters and less than 40 characters
- email must be present
- email must be unique (since we'll use this for logins later)
- email must be valid

------------

This README would normally document whatever steps are necessary to get the
application up and running.

Things you may want to cover:

* Ruby version

* System dependencies

* Configuration

* Database creation

* Database initialization

* How to run the test suite

* Services (job queues, cache servers, search engines, etc.)

* Deployment instructions

* ...

Please feel free to use a different markup language if you do not plan to run
rake doc:app.