In a new rails 4 app I anm getting an unintialized constant error for a module. The module is named ProcessBill and is located in lib/process_bill.rb
console error:
ActionController::RoutingError (uninitialized constant BillsController::ProcessBill):
controller code:
class BillsController < ApplicationController
include ProcessBill
lib/process_bill.rb
module ProcessBill