Slide 15
Slide 15 text
Some ways Rails improves your velocity
CRUD - Create, Read, Update, Delete
• Let’s say you want to build a CRUD web app that reads and writes
a SQL database. Rails is ideal for this.
• Track listings, hosts, guests, reservations (Airbnb).
• Track sellers, stores, products, inventory (Shopify).
• Track payments, refunds, credit cards, vendors (Square).
• Resources: things your app deals with. Usually stored in tables.
• Rails also has rich support for RESTful APIs, e.g. for web and
mobile front-ends to call.