I'm using Middleman v4 and I'm having issues in both the console and when I use RSpec to unit test my libraries.
Right now I comment out most of my config.rb
file, something like this.
require 'lib/foo'
require 'lib/bar'
#activate external_pipeline ...
#activate stuff
Activating features like the external pipeline causes problems in both console and when I'm unit testing. I could use environment variables and conditionals to fix the problem, but I was wondering if anyone has had to approach this issue.