Add HTML comments.
First, we'll create a sample Ruby app that you can use when developing your buildpack:
mkdir ruby-sample-app
Create a file in the current directory called ruby-sample-app/app.rb
with the following contents:
require 'sinatra'
set :bind, '0.0.0.0'
set :port, 8080
get '/' do
'Hello World!'
end
Add additional information to syntax highlighting information.
First, we'll create a sample Ruby app that you can use when developing your buildpack:
mkdir ruby-sample-app
Create a file in the current directory called ruby-sample-app/app.rb
with the following contents:
require 'sinatra'
set :bind, '0.0.0.0'
set :port, 8080
get '/' do
'Hello World!'
end