I installed devise and added config.action_mailer.default_url_options = { :host => 'localhost:3000' } to my development.rb file as suggested. When I run cucumber I get an error:
Missing host to link to! Please provide :host parameter or set
default_url_options[:host] (ActionView::Template::Error)
does anyone know what this is related to? not too much info on google about this
Cucumber runs your test environment so you need to add the very same line in
test.rb.