I’m trying to learn more about sitemap and would like to launch a pry session once it’s populated. So I added the following to config.rb:
ready do
binding.pry
end
And at the beginning put:
require 'pry'
But then running middleman server
gives:
/Users/ayank/Documents/web/YankMM/config.rb:1:in `require': cannot load such file -- pry (LoadError)
What am I missing?