I use sinatra, and have a question that I can’t solve, here is the code:
require 'sinatra'
def url(s)
get s do yield end
post s do yield end
end
url '/' do
erb :index
end
then, the program tips that: undefined method `erb’ for main:Object
what should I do?
You could try something like this: