From 97bb04933b53f66b8550be00a43ab850beffba2d Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Wed, 27 Mar 2024 08:59:24 +0100 Subject: [PATCH] README: the minimal example needs `rackup` (#2009) Close https://github.com/sinatra/sinatra/issues/2003 --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5dcbd7bdc..785fbc5e6 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,12 @@ get '/' do end ``` -Install the gem: +Install the gems needed: ```shell gem install sinatra -gem install puma # or any other server +gem install rackup +gem install puma # or any other server (optional step) ``` And run with: