I'm using High Voltage for static pages in a Rails 4 app. I'd like to specify a static home page as outlined here but I get the following error on server bootup:
undefined method `configure' for HighVoltage:Module (NoMethodError)
I have a high_voltage.rb file in config/initializers so can't understand what's going wrong here. High Voltage works fine besides this.
UPDATE:
Gemfile has the following line:
gem 'high_voltage'
Gemfile.lock:
high_voltage (2.0.0)
high_voltage.rb:
HighVoltage.configure do |config|
config.home_page = 'home'
end