Merge pull request #569 from tcdowney/update-buildpack-author-guide-gemfile

Update Gemfile in buildpack author guide
This commit is contained in:
Aidan Delaney 2023-03-08 05:49:10 +00:00 committed by GitHub
commit 23a772a243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -46,11 +46,12 @@ Then, create a file called `ruby-sample-app/Gemfile`<!--+"{{open}}"+--> with the
<!-- test:file=ruby-sample-app/Gemfile -->
```ruby
source "https://rubygems.org"
source 'https://rubygems.org'
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "sinatra"
gem 'sinatra'
gem 'webrick'
```
Finally, make sure your local Docker daemon is running by executing: